Skip to content

Commit

Permalink
Some Runtest fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
800maximum123 committed Jul 28, 2024
1 parent b8e0bc3 commit f45cfcd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion maps/torch_fd/job/addition/research_jobs.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Access
var/const/access_research_security = "ACCESS_RESEARCH_SECURITY" //97
var/global/const/access_research_security = "ACCESS_RESEARCH_SECURITY" //97
/datum/access/rnd_guard
id = access_research_security
desc = "Research Checkpoint"
Expand Down
10 changes: 5 additions & 5 deletions maps/torch_fd/torch_cameras.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var/const/NETWORK_EXPLO = "Exploration"
var/const/NETWORK_PETROV = "Petrov"
var/const/NETWORK_GUPS = "General Utility Pods" // 2 for the price of 1! :p
var/const/NETWORK_SUPPLY = "Supply"
var/const/NETWORK_YACHT = "Private Catamaran"
var/global/const/NETWORK_EXPLO = "Exploration"
var/global/const/NETWORK_PETROV = "Petrov"
var/global/const/NETWORK_GUPS = "General Utility Pods" // 2 for the price of 1! :p
var/global/const/NETWORK_SUPPLY = "Supply"
var/global/const/NETWORK_YACHT = "Private Catamaran"

/datum/map/torch/get_network_access(network)
switch(network)
Expand Down
2 changes: 1 addition & 1 deletion mods/_fd/_maps/snow_cage/code/snow_cage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
description = "An arctic planet with a small number of signatures on the surface. Scans indicate artificial structures under the planet's surface."
prefix = "mods/_fd/_maps/snow_cage/maps/"
suffixes = list("snow_cage-1.dmm","snow_cage-2.dmm","snow_cage-3.dmm","snow_cage-4.dmm")
area_usage_test_exempted_root_areas = list(/area/splanet/)
area_usage_test_exempted_root_areas = list(/area/splanet)
apc_test_exempt_areas = list(
/area/splanet/outdoors = NO_SCRUBBER|NO_VENT|NO_APC,
/area/splanet/underground = NO_SCRUBBER|NO_VENT|NO_APC
Expand Down
2 changes: 1 addition & 1 deletion mods/_fd/combat_stances/code/item.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

var/obj/item/melee/I

if(melee_strikes && !istype(I, /obj/item/melee/energy/))
if(melee_strikes && !istype(I, /obj/item/melee/energy))
swap_stances(user)

/obj/item/proc/swap_stances(mob/user)
Expand Down
4 changes: 2 additions & 2 deletions mods/_fd/fd_assets/code/obj/items/intel_console.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

/obj/structure/fd/intel_console/use_tool(obj/item/I, mob/living/user)
SHOULD_CALL_PARENT(FALSE)
if(state == 3 && istype(I, /obj/item/stack/material/glass/))
if(state == 3 && istype(I, /obj/item/stack/material/glass))
var/obj/item/stack/material/glass/guass = I
if(guass.amount <= 5)
to_chat(user, "<span class='warning'>У вас недостаточно материалов! Для починки экрана понадобится минимум 5 единиц стекла!</span>")
Expand All @@ -82,7 +82,7 @@
state = 1
update_icon()
if(state == 1)
if(powerless == TRUE && istype(I, /obj/item/cell/))
if(powerless == TRUE && istype(I, /obj/item/cell))
if(do_after(user, 30))
powerless = FALSE
to_chat(user, "<span class='notice'>Вы аккуратно вставляете внутрь батарею...</span>")
Expand Down

0 comments on commit f45cfcd

Please sign in to comment.