diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm
index b6fdd46e41..9fd1e731d7 100644
--- a/code/_helpers/unsorted.dm
+++ b/code/_helpers/unsorted.dm
@@ -802,7 +802,7 @@ Turf and target are seperate in case you want to teleport some distance from a t
//Move the mobs unless it's an AI eye or other eye type.
for(var/mob/M in T)
- if(isobserver(M)) continue // If we need to check for more mobs, I'll add a variable
+ if(isEye(M)) continue // If we need to check for more mobs, I'll add a variable
M.loc = X
if(z_level_change) // Same goes for mobs.
@@ -945,7 +945,7 @@ Turf and target are seperate in case you want to teleport some distance from a t
for(var/mob/M in T)
- if(!ismob(M) || isobserver(M)) continue // If we need to check for more mobs, I'll add a variable
+ if(!ismob(M) || isEye(M)) continue // If we need to check for more mobs, I'll add a variable
mobs += M
for(var/mob/M in mobs)
diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm
index add1dfbf02..acb568c6d8 100644
--- a/code/game/jobs/job_controller.dm
+++ b/code/game/jobs/job_controller.dm
@@ -660,16 +660,16 @@ var/global/datum/controller/occupations/job_master
fail_deadly = J?.offmap_spawn
//Spawn them at their preferred one
- if(C && C.prefs.read_preference(/datum/preference/choiced/human/spawnpoint))
- if(!(C.prefs.read_preference(/datum/preference/choiced/human/spawnpoint) in using_map.allowed_spawns))
+ if(C && C.prefs.read_preference(/datum/preference/choiced/living/spawnpoint))
+ if(!(C.prefs.read_preference(/datum/preference/choiced/living/spawnpoint) in using_map.allowed_spawns))
if(fail_deadly)
to_chat(C, span_warning("Your chosen spawnpoint is unavailable for this map and your job requires a specific spawnpoint. Please correct your spawn point choice."))
return
else
- to_chat(C, span_warning("Your chosen spawnpoint ([C.prefs.read_preference(/datum/preference/choiced/human/spawnpoint)]) is unavailable for the current map. Spawning you at one of the enabled spawn points instead."))
+ to_chat(C, span_warning("Your chosen spawnpoint ([C.prefs.read_preference(/datum/preference/choiced/living/spawnpoint)]) is unavailable for the current map. Spawning you at one of the enabled spawn points instead."))
spawnpos = null
else
- spawnpos = spawntypes[C.prefs.read_preference(/datum/preference/choiced/human/spawnpoint)]
+ spawnpos = spawntypes[C.prefs.read_preference(/datum/preference/choiced/living/spawnpoint)]
//We will return a list key'd by "turf" and "msg"
. = list("turf","msg")
diff --git a/code/game/objects/effects/decals/Cleanable/misc.dm b/code/game/objects/effects/decals/Cleanable/misc.dm
index e8a6083fed..f2cb824888 100644
--- a/code/game/objects/effects/decals/Cleanable/misc.dm
+++ b/code/game/objects/effects/decals/Cleanable/misc.dm
@@ -121,6 +121,7 @@
density = FALSE
anchored = TRUE
icon = 'icons/effects/tomatodecal.dmi'
+ icon_state = "tomato_floor1"
random_icon_states = list("tomato_floor1", "tomato_floor2", "tomato_floor3")
/obj/effect/decal/cleanable/egg_smudge
@@ -129,6 +130,7 @@
density = FALSE
anchored = TRUE
icon = 'icons/effects/tomatodecal.dmi'
+ icon_state = "smashed_egg1"
random_icon_states = list("smashed_egg1", "smashed_egg2", "smashed_egg3")
/obj/effect/decal/cleanable/pie_smudge //honk
@@ -137,6 +139,7 @@
density = FALSE
anchored = TRUE
icon = 'icons/effects/tomatodecal.dmi'
+ icon_state = "smashed_pie"
random_icon_states = list("smashed_pie")
/obj/effect/decal/cleanable/fruit_smudge
diff --git a/code/game/objects/items/devices/laserpointer.dm b/code/game/objects/items/devices/laserpointer.dm
index 8920545e03..44fb1f8f16 100644
--- a/code/game/objects/items/devices/laserpointer.dm
+++ b/code/game/objects/items/devices/laserpointer.dm
@@ -184,7 +184,7 @@
//laser pointer image
- icon_state = "pointer_[pointer_icon_state]"
+ icon_state = "[initial(icon_state)]_[pointer_icon_state]"
var/list/showto = list()
for(var/mob/M in viewers(world.view,targloc))
if(M.client)
@@ -211,7 +211,7 @@
flick_overlay(I, showto, cooldown)
spawn(cooldown)
- icon_state = "pointer"
+ icon_state = initial(icon_state)
/obj/item/laser_pointer/process()
if(prob(20 - recharge_locked*5))
diff --git a/code/game/objects/random/mob.dm b/code/game/objects/random/mob.dm
index 5d1a0f5ecb..46d916dbd0 100644
--- a/code/game/objects/random/mob.dm
+++ b/code/game/objects/random/mob.dm
@@ -237,7 +237,7 @@
/obj/random/mob/mouse
name = "Random Mouse"
desc = "This is a random boring maus."
- icon_state = "mouse_gray"
+ icon_state = "animal"
spawn_nothing_percentage = 15
/obj/random/mob/mouse/item_to_spawn()
diff --git a/code/game/turfs/simulated.dm b/code/game/turfs/simulated.dm
index ea4e8f05ce..35b92822b4 100644
--- a/code/game/turfs/simulated.dm
+++ b/code/game/turfs/simulated.dm
@@ -170,7 +170,8 @@
B.blood_DNA = list()
if(!B.blood_DNA[M.dna.unique_enzymes])
B.blood_DNA[M.dna.unique_enzymes] = M.dna.b_type
- B.viruses = M.viruses.Copy()
+ if(M.viruses)
+ B.viruses = M.viruses.Copy()
return 1 //we bloodied the floor
blood_splatter(src,M.get_blood(M.vessel),1)
return 1 //we bloodied the floor
diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm
index 571632b9dd..2494e10574 100644
--- a/code/game/turfs/simulated/walls.dm
+++ b/code/game/turfs/simulated/walls.dm
@@ -120,7 +120,7 @@
/turf/simulated/wall/ChangeTurf(var/turf/N, var/tell_universe, var/force_lighting_update, var/preserve_outdoors)
clear_plants()
- ..(N, tell_universe, force_lighting_update, preserve_outdoors)
+ . = ..(N, tell_universe, force_lighting_update, preserve_outdoors)
//Appearance
/turf/simulated/wall/examine(mob/user)
diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm
index aead36bbc7..576619441a 100644
--- a/code/modules/admin/verbs/adminjump.dm
+++ b/code/modules/admin/verbs/adminjump.dm
@@ -20,7 +20,7 @@
if(areaname)
A = return_sorted_areas()[areaname]
else
- A = tgui_input_list(usr, "Pick an area:", "Jump to Area", return_sorted_areas())
+ A = return_sorted_areas()[tgui_input_list(usr, "Pick an area:", "Jump to Area", return_sorted_areas())]
if(!A)
return
diff --git a/code/modules/client/preference_setup/general/01_basic.dm b/code/modules/client/preference_setup/general/01_basic.dm
index ebd7563b74..93523ff3c5 100644
--- a/code/modules/client/preference_setup/general/01_basic.dm
+++ b/code/modules/client/preference_setup/general/01_basic.dm
@@ -63,7 +63,7 @@
. += span_bold("Biological Sex:") + " [gender2text(pref.biological_gender)]
"
. += span_bold("Pronouns:") + " [gender2text(pref.identifying_gender)]
"
. += span_bold("Age:") + " [pref.read_preference(/datum/preference/numeric/human/age)] Birthday: [pref.read_preference(/datum/preference/numeric/human/bday_month)]/[pref.read_preference(/datum/preference/numeric/human/bday_day)] - Announce?: [pref.read_preference(/datum/preference/toggle/human/bday_announce) ? "Yes" : "No"]
"
- . += span_bold("Spawn Point:") + " [pref.read_preference(/datum/preference/choiced/human/spawnpoint)]
"
+ . += span_bold("Spawn Point:") + " [pref.read_preference(/datum/preference/choiced/living/spawnpoint)]
"
if(CONFIG_GET(flag/allow_metadata))
. += span_bold("OOC Notes: EditLikesDislikes") + "
"
. = jointext(.,null)
@@ -183,7 +183,7 @@
spawnkeys += spawntype
var/choice = tgui_input_list(user, "Where would you like to spawn when late-joining?", "Late-Join Choice", spawnkeys)
if(!choice || !spawntypes[choice] || !CanUseTopic(user)) return TOPIC_NOACTION
- pref.update_preference_by_type(/datum/preference/choiced/human/spawnpoint, choice)
+ pref.update_preference_by_type(/datum/preference/choiced/living/spawnpoint, choice)
return TOPIC_REFRESH
else if(href_list["edit_ooc_notes"])
diff --git a/code/modules/client/preferences/types/character/general/01_basic.dm b/code/modules/client/preferences/types/character/general/01_basic.dm
index 3449486c23..b156f7a3ae 100644
--- a/code/modules/client/preferences/types/character/general/01_basic.dm
+++ b/code/modules/client/preferences/types/character/general/01_basic.dm
@@ -159,17 +159,17 @@
/datum/preference/toggle/human/name_is_always_random/apply_to_human(mob/living/carbon/human/target, value)
return // handled in copy_to
-/datum/preference/choiced/human/spawnpoint
+/datum/preference/choiced/living/spawnpoint
category = PREFERENCE_CATEGORY_MANUALLY_RENDERED
savefile_key = "spawnpoint"
savefile_identifier = PREFERENCE_CHARACTER
can_randomize = FALSE
-/datum/preference/choiced/human/spawnpoint/init_possible_values()
+/datum/preference/choiced/living/spawnpoint/init_possible_values()
var/list/spawnkeys = list()
- for(var/spawntype in spawntypes)
+ for(var/spawntype in get_spawn_points())
spawnkeys += spawntype
return spawnkeys
-/datum/preference/choiced/human/spawnpoint/apply_to_human(mob/living/carbon/human/target, value)
+/datum/preference/choiced/living/spawnpoint/apply_to_living(mob/living/target, value)
return // handled in job_controller
diff --git a/code/modules/client/preferences/types/character/general/03_body.dm b/code/modules/client/preferences/types/character/general/03_body.dm
index 8037bbe21a..1e4215b516 100644
--- a/code/modules/client/preferences/types/character/general/03_body.dm
+++ b/code/modules/client/preferences/types/character/general/03_body.dm
@@ -56,7 +56,7 @@
/datum/preference/color/human/synth_color
category = PREFERENCE_CATEGORY_MANUALLY_RENDERED
savefile_identifier = PREFERENCE_CHARACTER
- savefile_key = "synth_color"
+ savefile_key = "synth_color_rgb"
can_randomize = FALSE
/datum/preference/color/human/synth_color/apply_to_human(mob/living/carbon/human/target, value)
diff --git a/code/modules/client/preferences_spawnpoints.dm b/code/modules/client/preferences_spawnpoints.dm
index 6078808c30..14789bf17b 100644
--- a/code/modules/client/preferences_spawnpoints.dm
+++ b/code/modules/client/preferences_spawnpoints.dm
@@ -6,6 +6,11 @@ var/list/spawntypes = list()
var/datum/spawnpoint/S = new type()
spawntypes[S.display_name] = S
+/proc/get_spawn_points()
+ if(!LAZYLEN(spawntypes))
+ populate_spawn_points()
+ return spawntypes
+
/datum/spawnpoint
var/msg //Message to display on the arrivals computer.
var/list/turfs //List of turfs to spawn on.
@@ -103,4 +108,4 @@ var/global/list/latejoin_tram = list()
/datum/spawnpoint/tram/New()
..()
- turfs = latejoin_tram
\ No newline at end of file
+ turfs = latejoin_tram
diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm
index 6af58f989d..24fea7e468 100644
--- a/code/modules/client/verbs/ooc.dm
+++ b/code/modules/client/verbs/ooc.dm
@@ -155,7 +155,7 @@
for(var/mob/viewer in m_viewers)
if(viewer.client && viewer.client.prefs?.read_preference(/datum/preference/toggle/show_looc))
receivers |= viewer.client
- else if(isobserver(viewer)) // For AI eyes and the like
+ else if(isEye(viewer)) // For AI eyes and the like
var/mob/observer/eye/E = viewer
if(E.owner && E.owner.client)
receivers |= E.owner.client
diff --git a/code/modules/clothing/spacesuits/rig/modules/protean.dm b/code/modules/clothing/spacesuits/rig/modules/protean.dm
index f1e78a5e07..85b45e0c46 100644
--- a/code/modules/clothing/spacesuits/rig/modules/protean.dm
+++ b/code/modules/clothing/spacesuits/rig/modules/protean.dm
@@ -131,6 +131,9 @@ These should come standard with the Protean rigsuit, unless you want them to wor
/obj/item/rig_module/protean/armor/process()
if(active)
var/mob/living/carbon/human/H = holder.wearer
+ if(!H)
+ deactivate(1)
+ return
if(istype(H.species, /datum/species/protean))
to_chat(H, span_warning("Your Protean modules do not function on yourself."))
deactivate(1)
@@ -185,7 +188,10 @@ These should come standard with the Protean rigsuit, unless you want them to wor
if(active)
var/mob/living/carbon/human/H = holder.wearer
var/mob/living/P = holder?:myprotean
- if((istype(H.species, /datum/species/protean)) || !H || !P)
+ if(!H || !P)
+ deactivate()
+ return
+ if(istype(H.species, /datum/species/protean))
to_chat(H, span_warning("Your Protean modules do not function on yourself."))
deactivate()
return
diff --git a/code/modules/food/drinkingglass/drinkingglass.dm b/code/modules/food/drinkingglass/drinkingglass.dm
index cb9f4ffb8b..c2fc897793 100644
--- a/code/modules/food/drinkingglass/drinkingglass.dm
+++ b/code/modules/food/drinkingglass/drinkingglass.dm
@@ -10,6 +10,7 @@
icon = DRINK_ICON_FILE
var/base_icon = "square" // Base icon name
volume = 30
+ icon_state = "square"
var/list/filling_states // List of percentages full that have icons
diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm
index 8abd64b76f..5aae096b7e 100644
--- a/code/modules/mob/living/carbon/human/human_defense.dm
+++ b/code/modules/mob/living/carbon/human/human_defense.dm
@@ -571,10 +571,11 @@ emp_act
/mob/living/carbon/human/proc/bloody_hands(var/mob/living/source, var/amount = 2)
- if (gloves)
- gloves.add_blood(source)
- gloves:transfer_blood = amount
- gloves:bloody_hands_mob = source
+ if (istype(gloves, /obj/item/clothing/gloves))
+ var/obj/item/clothing/gloves/gl = gloves
+ gl.add_blood(source)
+ gl.transfer_blood = amount
+ gl.bloody_hands_mob = source
else
add_blood(source)
bloody_hands = amount
diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm
index 924adcbc5f..48c5c437ee 100644
--- a/code/modules/mob/living/living_defense.dm
+++ b/code/modules/mob/living/living_defense.dm
@@ -150,7 +150,7 @@
apply_effect(EYE_BLUR, stun_amount)
if (agony_amount)
- apply_damage(agony_amount, HALLOSS, def_zone, 0, used_weapon)
+ apply_damage(agony_amount, HALLOSS, def_zone, 0, used_weapon=used_weapon)
apply_effect(STUTTER, agony_amount/10)
apply_effect(EYE_BLUR, agony_amount/10)
diff --git a/code/modules/overmap/spacetravel.dm b/code/modules/overmap/spacetravel.dm
index 664c37141e..888b2110db 100644
--- a/code/modules/overmap/spacetravel.dm
+++ b/code/modules/overmap/spacetravel.dm
@@ -102,7 +102,7 @@
return
// Don't let AI eyes yeet themselves off the map
- if(isobserver(A))
+ if(isEye(A))
return
if(A.lost_in_space())
diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm
index c867fa71a8..bbcb1586fa 100644
--- a/code/modules/paperwork/photocopier.dm
+++ b/code/modules/paperwork/photocopier.dm
@@ -87,7 +87,7 @@
if(!camera)
return
- var/obj/item/photo/selection = camera.selectpicture()
+ var/obj/item/photo/selection = camera.selectpicture(ui.user)
if (!selection)
return
diff --git a/code/modules/paperwork/silicon_photography.dm b/code/modules/paperwork/silicon_photography.dm
index 4c936224ce..26ea8bbf4f 100644
--- a/code/modules/paperwork/silicon_photography.dm
+++ b/code/modules/paperwork/silicon_photography.dm
@@ -21,29 +21,29 @@
p.name = "Image [photos_taken][sufix]"
aipictures += p
-/obj/item/camera/siliconcam/proc/injectmasteralbum(obj/item/photo/p) //stores image information to a list similar to that of the datacore
- var/mob/living/silicon/robot/C = usr
+/obj/item/camera/siliconcam/proc/injectmasteralbum(mob/user, obj/item/photo/p) //stores image information to a list similar to that of the datacore
+ var/mob/living/silicon/robot/C = user
if(C.connected_ai)
C.connected_ai.aiCamera.injectaialbum(p.copy(1), " (synced from [C.name])")
to_chat(C.connected_ai, span_unconscious("Image uploaded by [C.name]"))
- to_chat(usr, span_unconscious("Image synced to remote database")) //feedback to the Cyborg player that the picture was taken
+ to_chat(user, span_unconscious("Image synced to remote database")) //feedback to the Cyborg player that the picture was taken
else
- to_chat(usr, span_unconscious("Image recorded"))
+ to_chat(user, span_unconscious("Image recorded"))
// Always save locally
injectaialbum(p)
-/obj/item/camera/siliconcam/proc/selectpicture(obj/item/camera/siliconcam/cam)
+/obj/item/camera/siliconcam/proc/selectpicture(mob/user, obj/item/camera/siliconcam/cam)
if(!cam)
- cam = getsource()
+ cam = getsource(user)
var/list/nametemp = list()
var/find
if(cam.aipictures.len == 0)
- to_chat(usr, span_userdanger("No images saved"))
+ to_chat(user, span_userdanger("No images saved"))
return
for(var/obj/item/photo/t in cam.aipictures)
nametemp += t.name
- find = tgui_input_list(usr, "Select image (numbered in order taken)", "Picture Choice", nametemp)
+ find = tgui_input_list(user, "Select image (numbered in order taken)", "Picture Choice", nametemp)
if(!find)
return
@@ -51,48 +51,50 @@
if(q.name == find)
return q
-/obj/item/camera/siliconcam/proc/viewpictures()
- var/obj/item/photo/selection = selectpicture()
+/obj/item/camera/siliconcam/proc/viewpictures(mob/user)
+ var/obj/item/photo/selection = selectpicture(user)
if(!selection)
return
- selection.show(usr)
- to_chat(usr,selection.desc)
+ selection.show(user)
-/obj/item/camera/siliconcam/proc/deletepicture(obj/item/camera/siliconcam/cam)
- var/selection = selectpicture(cam)
+ if(selection.desc)
+ to_chat(user,selection.desc)
+
+/obj/item/camera/siliconcam/proc/deletepicture(mob/user, obj/item/camera/siliconcam/cam)
+ var/selection = selectpicture(user, cam)
if(!selection)
return
aipictures -= selection
- to_chat(usr, span_unconscious("Local image deleted"))
+ to_chat(user, span_unconscious("Local image deleted"))
/obj/item/camera/siliconcam/ai_camera/can_capture_turf(turf/T, mob/user)
var/mob/living/silicon/ai = user
return ai.TurfAdjacent(T)
-/obj/item/camera/siliconcam/proc/toggle_camera_mode()
+/obj/item/camera/siliconcam/proc/toggle_camera_mode(mob/user)
if(in_camera_mode)
- camera_mode_off()
+ camera_mode_off(user)
else
- camera_mode_on()
+ camera_mode_on(user)
-/obj/item/camera/siliconcam/proc/camera_mode_off()
+/obj/item/camera/siliconcam/proc/camera_mode_off(mob/user)
src.in_camera_mode = 0
- to_chat(usr, span_infoplain(span_bold("Camera Mode deactivated")))
+ to_chat(user, span_infoplain(span_bold("Camera Mode deactivated")))
-/obj/item/camera/siliconcam/proc/camera_mode_on()
+/obj/item/camera/siliconcam/proc/camera_mode_on(mob/user)
src.in_camera_mode = 1
- to_chat(usr, span_infoplain(span_bold("Camera Mode activated")))
+ to_chat(user, span_infoplain(span_bold("Camera Mode activated")))
/obj/item/camera/siliconcam/ai_camera/printpicture(mob/user, obj/item/photo/p)
injectaialbum(p)
- to_chat(usr, span_unconscious("Image recorded"))
+ to_chat(user, span_unconscious("Image recorded"))
/obj/item/camera/siliconcam/robot_camera/printpicture(mob/user, obj/item/photo/p)
- injectmasteralbum(p)
+ injectmasteralbum(user, p)
/mob/living/silicon/ai/proc/take_image()
set category = "AI.Commands"
@@ -100,7 +102,7 @@
set desc = "Takes an image"
if(aiCamera)
- aiCamera.toggle_camera_mode()
+ aiCamera.toggle_camera_mode(src)
/mob/living/silicon/ai/proc/view_images()
set category = "AI.Commands"
@@ -108,7 +110,7 @@
set desc = "View images"
if(aiCamera)
- aiCamera.viewpictures()
+ aiCamera.viewpictures(src)
/mob/living/silicon/ai/proc/delete_images()
set category = "AI.Commands"
@@ -116,7 +118,7 @@
set desc = "Delete image"
if(aiCamera)
- aiCamera.deletepicture()
+ aiCamera.deletepicture(src)
/mob/living/silicon/robot/proc/take_image()
set category ="Abilities.Silicon"
@@ -124,7 +126,7 @@
set desc = "Takes an image"
if(aiCamera)
- aiCamera.toggle_camera_mode()
+ aiCamera.toggle_camera_mode(src)
/mob/living/silicon/robot/proc/view_images()
set category ="Abilities.Silicon"
@@ -132,7 +134,7 @@
set desc = "View images"
if(aiCamera)
- aiCamera.viewpictures()
+ aiCamera.viewpictures(src)
/mob/living/silicon/robot/proc/delete_images()
set category = "Abilities.Silicon"
@@ -140,13 +142,13 @@
set desc = "Delete a local image"
if(aiCamera)
- aiCamera.deletepicture()
+ aiCamera.deletepicture(src)
-/obj/item/camera/siliconcam/proc/getsource()
+/obj/item/camera/siliconcam/proc/getsource(mob/user)
if(isAI(src.loc))
return src
- var/mob/living/silicon/robot/C = usr
+ var/mob/living/silicon/robot/C = user
var/obj/item/camera/siliconcam/Cinfo
if(C.connected_ai)
Cinfo = C.connected_ai.aiCamera
@@ -157,4 +159,4 @@
/mob/living/silicon/proc/GetPicture()
if(!aiCamera)
return
- return aiCamera.selectpicture()
+ return aiCamera.selectpicture(src)
diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm
index f61341aaed..4bce471002 100644
--- a/code/modules/power/cable.dm
+++ b/code/modules/power/cable.dm
@@ -208,7 +208,7 @@ var/list/possible_cable_coil_colours = list(
if(c.d1 == UP || c.d2 == UP)
qdel(c)
- investigate_log("was cut by [key_name(usr, usr.client)] in [user.loc.loc]","wires")
+ investigate_log("was cut by [key_name(user, user.client)] in [user.loc.loc]","wires")
qdel(src)
return
@@ -245,7 +245,7 @@ var/list/possible_cable_coil_colours = list(
var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
s.set_up(5, 1, src)
s.start()
- if(usr.stunned)
+ if(user.stunned)
return 1
return 0
@@ -601,8 +601,8 @@ var/list/possible_cable_coil_colours = list(
/obj/item/stack/cable_coil/attackby(obj/item/W, mob/user)
if(istype(W, /obj/item/multitool))
- var/selected_type = tgui_input_list(usr, "Pick new colour.", "Cable Colour", possible_cable_coil_colours)
- set_cable_color(selected_type, usr)
+ var/selected_type = tgui_input_list(user, "Pick new colour.", "Cable Colour", possible_cable_coil_colours)
+ set_cable_color(selected_type, user)
return
return ..()
@@ -981,7 +981,7 @@ var/list/possible_cable_coil_colours = list(
/obj/item/stack/cable_coil/alien/attack_hand(mob/user as mob)
if (user.get_inactive_hand() == src)
- var/N = tgui_input_number(usr, "How many units of wire do you want to take from [src]? You can only take up to [amount] at a time.", "Split stacks", 1, amount)
+ var/N = tgui_input_number(user, "How many units of wire do you want to take from [src]? You can only take up to [amount] at a time.", "Split stacks", 1, amount)
if(N && N <= amount)
var/obj/item/stack/cable_coil/CC = new/obj/item/stack/cable_coil(user.loc)
CC.amount = N
@@ -992,8 +992,8 @@ var/list/possible_cable_coil_colours = list(
src.add_fingerprint(user)
CC.add_fingerprint(user)
spawn(0)
- if (src && usr.machine==src)
- src.interact(usr)
+ if (src && user.machine==src)
+ src.interact(user)
else
return
else
diff --git a/code/modules/power/cable_heavyduty.dm b/code/modules/power/cable_heavyduty.dm
index cc0cdcd6a1..8d63500315 100644
--- a/code/modules/power/cable_heavyduty.dm
+++ b/code/modules/power/cable_heavyduty.dm
@@ -18,10 +18,10 @@
return
if(W.has_tool_quality(TOOL_WIRECUTTER))
- to_chat(usr, span_blue("These cables are too tough to be cut with those [W.name]."))
+ to_chat(user, span_blue("These cables are too tough to be cut with those [W.name]."))
return
else if(istype(W, /obj/item/stack/cable_coil))
- to_chat(usr, span_blue("You will need heavier cables to connect to these."))
+ to_chat(user, span_blue("You will need heavier cables to connect to these."))
return
else
..()
diff --git a/code/modules/tgui/modules/late_choices.dm b/code/modules/tgui/modules/late_choices.dm
index e7a93b41ac..88096bea22 100644
--- a/code/modules/tgui/modules/late_choices.dm
+++ b/code/modules/tgui/modules/late_choices.dm
@@ -134,4 +134,4 @@
tgui_alert_async(new_user,"Your current species, [new_user.client.prefs.species], is not available for play on the station.")
return 0
- new_user.AttemptLateSpawn(job, new_user.read_preference(/datum/preference/choiced/human/spawnpoint))
+ new_user.AttemptLateSpawn(job, new_user.read_preference(/datum/preference/choiced/living/spawnpoint))
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index eca1456e88..8cae0d4f90 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -1579,3 +1579,11 @@
icon = 'icons/inventory/accessory/item.dmi'
icon_state = "silver"
+
+//beeholddrbeesphb: Evelynn
+/obj/item/laser_pointer/evelynn_fluff
+ name = "Evelynn's Laser Pointer"
+ desc = "A small, furry, and fluffy toy that looks like a bee. It has laser eyes. Upon firing, the lasers make a buzzing noise."
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_state = "evelynn"
+ pointer_icon_state = "purple_laser"
diff --git a/code/modules/vore/persist/persist_vr.dm b/code/modules/vore/persist/persist_vr.dm
index 9733dcaafe..f405a8617e 100644
--- a/code/modules/vore/persist/persist_vr.dm
+++ b/code/modules/vore/persist/persist_vr.dm
@@ -91,7 +91,7 @@
// Okay we can start saving the data
if(new_spawn_point_type && prefs.persistence_settings & PERSIST_SPAWN)
- prefs.update_preference_by_type(/datum/preference/choiced/human/spawnpoint, initial(new_spawn_point_type.display_name))
+ prefs.update_preference_by_type(/datum/preference/choiced/living/spawnpoint, initial(new_spawn_point_type.display_name))
if(ishuman(occupant) && occupant.stat != DEAD)
var/mob/living/carbon/human/H = occupant
testing("Persist (PID): Saving stuff from [H] to [prefs] (\ref[prefs]).")
diff --git a/icons/obj/closets/coffin.dmi b/icons/obj/closets/coffin.dmi
index 2bb25db01d..db2c6e1931 100644
Binary files a/icons/obj/closets/coffin.dmi and b/icons/obj/closets/coffin.dmi differ
diff --git a/icons/obj/flora/deadtrees.dmi b/icons/obj/flora/deadtrees.dmi
index 2a3655b0d2..93e193cc5b 100644
Binary files a/icons/obj/flora/deadtrees.dmi and b/icons/obj/flora/deadtrees.dmi differ
diff --git a/icons/obj/power_cond_heavy.dmi b/icons/obj/power_cond_heavy.dmi
index 69b9ef085b..82b1fd7ee6 100644
Binary files a/icons/obj/power_cond_heavy.dmi and b/icons/obj/power_cond_heavy.dmi differ
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index d502efb78c..acea13b831 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ
diff --git a/maps/expedition_vr/aerostat/aerostat.dmm b/maps/expedition_vr/aerostat/aerostat.dmm
index b6cbd0a262..44fb145682 100644
--- a/maps/expedition_vr/aerostat/aerostat.dmm
+++ b/maps/expedition_vr/aerostat/aerostat.dmm
@@ -1088,7 +1088,6 @@
/area/tether_away/aerostat/inside)
"di" = (
/obj/structure/cable/heavyduty{
- dir = 2;
icon_state = "0-4"
},
/obj/structure/cable/yellow,
@@ -1348,7 +1347,6 @@
dir = 8
},
/obj/structure/cable/heavyduty{
- dir = 2;
icon_state = "0-4"
},
/obj/structure/cable{
diff --git a/maps/expedition_vr/space/fueldepot.dmm b/maps/expedition_vr/space/fueldepot.dmm
index 6f61f38940..f01fa28df0 100644
--- a/maps/expedition_vr/space/fueldepot.dmm
+++ b/maps/expedition_vr/space/fueldepot.dmm
@@ -323,7 +323,6 @@
/area/tether_away/fueldepot)
"aR" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/fuel{
@@ -340,7 +339,6 @@
icon_state = "1-8"
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -362,7 +360,6 @@
dir = 10
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -534,7 +531,6 @@
/area/tether_away/fueldepot)
"bq" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/aux{
@@ -574,7 +570,6 @@
dir = 10
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -585,7 +580,6 @@
/area/tether_away/fueldepot)
"bw" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
@@ -597,7 +591,6 @@
/area/tether_away/fueldepot)
"bx" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -605,7 +598,6 @@
/area/tether_away/fueldepot)
"by" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/fuel{
@@ -622,7 +614,6 @@
dir = 8
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -636,7 +627,6 @@
dir = 8
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -676,7 +666,6 @@
/area/tether_away/fueldepot)
"bF" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/fuel{
@@ -687,7 +676,6 @@
/area/tether_away/fueldepot)
"bG" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/visible/fuel{
@@ -698,7 +686,6 @@
/area/tether_away/fueldepot)
"bH" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
@@ -716,7 +703,6 @@
dir = 6
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -985,7 +971,6 @@
dir = 5
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -1363,7 +1348,6 @@
icon_state = "1-2"
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/visible/fuel,
@@ -1422,7 +1406,6 @@
dir = 8
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/cable{
diff --git a/maps/gateway_vr/lucky_7.dmm b/maps/gateway_vr/lucky_7.dmm
index bcd94780f0..047251b4cf 100644
--- a/maps/gateway_vr/lucky_7.dmm
+++ b/maps/gateway_vr/lucky_7.dmm
@@ -2431,7 +2431,6 @@
/obj/structure/disposalpipe/segment,
/obj/structure/catwalk,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -3260,7 +3259,6 @@
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -3894,7 +3892,6 @@
/obj/structure/disposalpipe/segment,
/obj/structure/catwalk,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
diff --git a/maps/offmap_vr/om_ships/aro.dmm b/maps/offmap_vr/om_ships/aro.dmm
index 18e07a2001..dae037322a 100644
--- a/maps/offmap_vr/om_ships/aro.dmm
+++ b/maps/offmap_vr/om_ships/aro.dmm
@@ -2901,7 +2901,6 @@
/area/ship/aro/engineering)
"gQ" = (
/obj/structure/cable/pink{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/shuttle/floor/alienplating/blue,
@@ -2924,7 +2923,6 @@
/area/ship/aro/engines)
"gU" = (
/obj/structure/cable/pink{
- dir = 1;
icon_state = "2-5"
},
/turf/simulated/shuttle/wall/alien/blue,
diff --git a/maps/offmap_vr/om_ships/sdf_corvette.dmm b/maps/offmap_vr/om_ships/sdf_corvette.dmm
index 744f6803ec..e40ab60b9c 100644
--- a/maps/offmap_vr/om_ships/sdf_corvette.dmm
+++ b/maps/offmap_vr/om_ships/sdf_corvette.dmm
@@ -13,13 +13,9 @@
/area/shuttle/sdf_corvette)
"bn" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -46,8 +42,6 @@
/area/shuttle/sdf_corvette)
"dv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/wall/rshull,
@@ -155,8 +149,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/unary/vent_scrubber,
@@ -209,13 +201,9 @@
/area/shuttle/sdf_corvette)
"mT" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/sleep_console,
@@ -255,8 +243,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -293,8 +279,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/door/blast/regular/open{
@@ -334,8 +318,6 @@
/area/shuttle/sdf_corvette)
"tg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/sleeper{
@@ -378,8 +360,6 @@
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
@@ -405,8 +385,6 @@
/area/shuttle/sdf_corvette)
"wQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -424,8 +402,6 @@
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -463,8 +439,6 @@
/area/shuttle/sdf_corvette)
"zb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -504,8 +478,6 @@
/area/shuttle/sdf_corvette)
"Cq" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/computer/ship/engines{
@@ -551,8 +523,6 @@
/area/shuttle/sdf_corvette)
"Fb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/wall/rshull,
@@ -702,13 +672,9 @@
/area/shuttle/sdf_corvette)
"Oc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/closet/walllocker/emerglocker/north,
diff --git a/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm b/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm
index abac085b9a..cdb7e5721d 100644
--- a/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm
+++ b/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm
@@ -16,13 +16,9 @@
/area/shuttle/sdf_corvette_wreck)
"bn" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -58,8 +54,6 @@
/area/shuttle/sdf_corvette_wreck)
"dv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/girder,
@@ -195,8 +189,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/unary/vent_scrubber,
@@ -272,13 +264,9 @@
/area/shuttle/sdf_corvette_wreck)
"mT" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/techfloor{
@@ -330,8 +318,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -372,8 +358,6 @@
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/door/blast/regular/open{
@@ -421,8 +405,6 @@
/area/shuttle/sdf_corvette_wreck)
"tg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/material/shard/shrapnel,
@@ -472,8 +454,6 @@
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/landmark/corpse/vintage/marine,
@@ -496,8 +476,6 @@
/area/shuttle/sdf_corvette_wreck)
"wQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -515,8 +493,6 @@
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -562,8 +538,6 @@
/area/shuttle/sdf_corvette_wreck)
"zb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -623,8 +597,6 @@
/area/shuttle/sdf_corvette_wreck)
"Cq" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/computer/ship/engines{
@@ -682,8 +654,6 @@
/area/shuttle/sdf_corvette_wreck)
"Fb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/girder,
@@ -864,13 +834,9 @@
/area/shuttle/sdf_corvette_wreck)
"Oc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/closet/walllocker/emerglocker/north,
@@ -885,8 +851,6 @@
/area/shuttle/sdf_corvette_wreck)
"Oe" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/wall/rshull,
diff --git a/maps/offmap_vr/om_ships/sdf_cutter.dmm b/maps/offmap_vr/om_ships/sdf_cutter.dmm
index ea8831cbaf..123ae68a6f 100644
--- a/maps/offmap_vr/om_ships/sdf_cutter.dmm
+++ b/maps/offmap_vr/om_ships/sdf_cutter.dmm
@@ -29,8 +29,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techmaint,
@@ -66,21 +64,15 @@
},
/obj/structure/handrail,
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/sdf_cutter)
"fi" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
@@ -92,8 +84,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -178,8 +168,6 @@
pixel_x = 22
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -266,8 +254,6 @@
/area/shuttle/sdf_cutter)
"pZ" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -363,8 +349,6 @@
dir = 1
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -468,8 +452,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
@@ -503,8 +485,6 @@
dir = 5
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
@@ -520,8 +500,6 @@
/area/shuttle/sdf_cutter)
"FP" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
@@ -560,8 +538,6 @@
dir = 5
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/alarm/alarms_hidden{
@@ -573,8 +549,6 @@
"Jy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
@@ -616,8 +590,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
@@ -675,8 +647,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/voidcraft,
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
@@ -694,8 +664,6 @@
"Pf" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
@@ -709,8 +677,6 @@
},
/obj/structure/handrail,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
@@ -742,8 +708,6 @@
dir = 1
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -798,8 +762,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/airlock_sensor{
diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm
index e8ec237438..d5c62f7048 100644
--- a/maps/southern_cross/southern_cross-1.dmm
+++ b/maps/southern_cross/southern_cross-1.dmm
@@ -5161,16 +5161,12 @@
/area/maintenance/firstdeck/foreport)
"akV" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/firstdeck/fpcenter)
"akW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -5178,8 +5174,6 @@
"akX" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/green/border,
@@ -5190,8 +5184,6 @@
"akY" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -5203,8 +5195,6 @@
"akZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/green/border,
@@ -5218,8 +5208,6 @@
/area/hallway/primary/firstdeck/fpcenter)
"ala" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -5234,16 +5222,12 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
/area/hallway/primary/firstdeck/fpcenter)
"alc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -5256,8 +5240,6 @@
/area/hallway/primary/firstdeck/fore)
"ald" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -5270,8 +5252,6 @@
/area/hallway/primary/firstdeck/fore)
"ale" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -5281,8 +5261,6 @@
/area/hallway/primary/firstdeck/fore)
"alf" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -5295,8 +5273,6 @@
/area/hallway/primary/firstdeck/fore)
"alg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -5311,16 +5287,12 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
/area/hallway/primary/firstdeck/fscenter)
"ali" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -5334,8 +5306,6 @@
"alj" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/green/border,
@@ -5346,8 +5316,6 @@
"alk" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/green/border,
@@ -5356,8 +5324,6 @@
"all" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/green/border,
@@ -5371,16 +5337,12 @@
/area/hallway/primary/firstdeck/fscenter)
"alm" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/firstdeck/fscenter)
"aln" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -5519,8 +5481,6 @@
/area/hangar/one)
"alF" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -5539,8 +5499,6 @@
/area/hallway/primary/firstdeck/fscenter)
"alK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -5701,8 +5659,6 @@
/area/maintenance/firstdeck/foreport)
"amf" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -5723,8 +5679,6 @@
/area/hallway/primary/firstdeck/fscenter)
"ami" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -6210,8 +6164,6 @@
/area/tcomm/chamber)
"anl" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -6226,8 +6178,6 @@
/area/tcomm/chamber)
"anm" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -6242,8 +6192,6 @@
/area/tcomm/chamber)
"ann" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -6266,8 +6214,6 @@
/area/tcomm/chamber)
"ano" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -6283,8 +6229,6 @@
/area/tcomm/computer)
"anp" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -6296,8 +6240,6 @@
/area/tcomm/computer)
"anq" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden{
@@ -6618,8 +6560,6 @@
/area/hallway/primary/firstdeck/fpcenter)
"anS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning/corner,
@@ -6734,8 +6674,6 @@
/area/tcomm/computer)
"aof" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -6757,8 +6695,6 @@
/area/tcomm/computer)
"aoh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -7059,8 +6995,6 @@
/area/hallway/primary/firstdeck/fpcenter)
"aoG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning{
@@ -7070,8 +7004,6 @@
/area/hallway/primary/firstdeck/fpcenter)
"aoH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -7083,8 +7015,6 @@
/area/maintenance/substation/firstdeck)
"aoI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -7100,8 +7030,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/light/small{
@@ -7115,8 +7043,6 @@
icon_state = "0-8"
},
/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
icon_state = "16-0"
},
/obj/structure/railing{
@@ -7208,13 +7134,9 @@
/area/shuttle/large_escape_pod1/station)
"aoU" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -7224,8 +7146,6 @@
/area/tcomm/computer)
"aoV" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -7242,8 +7162,6 @@
/area/tcomm/computer)
"aoW" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden{
@@ -7261,8 +7179,6 @@
/area/tcomm/computer)
"aoY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -7646,16 +7562,12 @@
"apO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -7732,8 +7644,6 @@
dir = 8
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -7752,13 +7662,9 @@
/area/tcomm/computer)
"apW" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -7788,8 +7694,6 @@
/area/tcomm/computer)
"apY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -8551,8 +8455,6 @@
/area/tcomm/computer)
"aru" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -8580,8 +8482,6 @@
/area/tcomm/computer)
"arw" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -9025,8 +8925,6 @@
/area/hallway/primary/firstdeck/fpcenter)
"ass" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -9049,8 +8947,6 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -9484,8 +9380,6 @@
/area/tcomm/tcomstorage)
"atv" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -9510,8 +9404,6 @@
/area/tcomm/tcomstorage)
"atx" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -9668,8 +9560,6 @@
"atM" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
icon_state = "16-0"
},
/obj/structure/cable/green{
@@ -10221,8 +10111,6 @@
/area/tcomm/tcomstorage)
"auM" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10240,8 +10128,6 @@
/area/tcomm/tcomstorage)
"auO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -10984,8 +10870,6 @@
/area/tcomm/tcomstorage)
"avU" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -10998,8 +10882,6 @@
/area/tcomm/tcomstorage)
"avV" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -11012,8 +10894,6 @@
/area/tcomm/tcomstorage)
"avW" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -11032,8 +10912,6 @@
/area/tcomm/tcomstorage)
"avX" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -11046,13 +10924,9 @@
/area/tcomm/tcomstorage)
"avY" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -11070,8 +10944,6 @@
/area/tcomm/tcomstorage)
"awa" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -11825,8 +11697,6 @@
/area/tcomm/tcomstorage)
"axn" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -11850,8 +11720,6 @@
/area/tcomm/tcomstorage)
"axp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm{
@@ -12338,8 +12206,6 @@
/area/tcomm/tcomstorage)
"ayr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -12809,8 +12675,6 @@
/area/hallway/primary/firstdeck/elevator)
"azv" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12829,8 +12693,6 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -13186,8 +13048,6 @@
/area/hallway/primary/firstdeck/elevator)
"aAl" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -13349,18 +13209,12 @@
/area/tcomm/tcomfoyer)
"aAB" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13375,8 +13229,6 @@
/area/tcomm/tcomfoyer)
"aAC" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/cyan{
@@ -13400,8 +13252,6 @@
/area/tcomm/tcomfoyer)
"aAD" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -13858,8 +13708,6 @@
/area/hallway/primary/firstdeck/apcenter)
"aBB" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -13892,13 +13740,9 @@
/area/ai_monitored/storage/eva/pilot)
"aBE" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/borderfloor{
@@ -13927,8 +13771,6 @@
"aBG" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass{
@@ -13941,8 +13783,6 @@
/area/ai_monitored/storage/eva/pilot)
"aBH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -13959,8 +13799,6 @@
"aBI" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -13971,8 +13809,6 @@
/area/hallway/primary/firstdeck/elevator)
"aBJ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -13980,8 +13816,6 @@
"aBK" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -14023,16 +13857,12 @@
/area/tcomm/entrance)
"aBO" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
/area/tcomm/entrance)
"aBP" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -14043,8 +13873,6 @@
/area/tcomm/entrance)
"aBQ" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -14053,16 +13881,12 @@
/area/tcomm/tcomfoyer)
"aBR" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/tcomm/tcomfoyer)
"aBS" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -14074,8 +13898,6 @@
/area/tcomm/tcomfoyer)
"aBT" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -14092,8 +13914,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/corner/green/border{
@@ -14622,8 +14442,6 @@
/area/hallway/primary/firstdeck/elevator)
"aCV" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -14661,8 +14479,6 @@
/area/hallway/primary/firstdeck/elevator)
"aCY" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14688,8 +14504,6 @@
/area/ai_monitored/storage/eva/pilot)
"aDa" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -14708,8 +14522,6 @@
/area/tcomm/tcomfoyer)
"aDb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14753,8 +14565,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/corner/green/border{
@@ -15267,13 +15077,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -15286,8 +15092,6 @@
/area/hallway/primary/firstdeck/elevator)
"aEb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15306,8 +15110,6 @@
/area/hallway/primary/firstdeck/elevator)
"aEc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -15326,8 +15128,6 @@
/area/tcomm/entrance)
"aEd" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -15343,8 +15143,6 @@
/area/tcomm/entrance)
"aEe" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -15398,8 +15196,6 @@
/area/tcomm/tcomfoyer)
"aEi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -15841,16 +15637,12 @@
/area/quartermaster/mininglockerroom)
"aEY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/quartermaster/mininglockerroom)
"aEZ" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/hologram/holopad,
@@ -15960,8 +15752,6 @@
/area/hallway/primary/firstdeck/ascenter)
"aFr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -16255,8 +16045,6 @@
/area/quartermaster/mininglockerroom)
"aGb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -16360,8 +16148,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -16473,8 +16259,6 @@
network = "tcommsat"
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
@@ -16613,8 +16397,6 @@
/area/quartermaster/mininglockerroom)
"aGO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16723,8 +16505,6 @@
/area/hallway/primary/firstdeck/elevator)
"aGY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -16784,24 +16564,18 @@
/area/hallway/primary/firstdeck/ascenter)
"aHf" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/firstdeck/ascenter)
"aHg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/firstdeck/ascenter)
"aHh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -17019,8 +16793,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -17076,8 +16848,6 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -17241,8 +17011,6 @@
/area/quartermaster/hallway)
"aId" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -17273,8 +17041,6 @@
/area/quartermaster/hallway)
"aIg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -17391,8 +17157,6 @@
/area/hallway/primary/firstdeck/aft)
"aIr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -17405,8 +17169,6 @@
/area/hallway/primary/firstdeck/aft)
"aIs" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -17421,16 +17183,12 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
/area/hallway/primary/firstdeck/ascenter)
"aIu" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -17443,8 +17201,6 @@
/area/hallway/primary/firstdeck/ascenter)
"aIv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -17463,8 +17219,6 @@
/area/hallway/primary/firstdeck/ascenter)
"aIw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -17480,8 +17234,6 @@
/area/hallway/primary/firstdeck/ascenter)
"aIx" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -17620,8 +17372,6 @@
/area/quartermaster/storage)
"aIL" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17638,8 +17388,6 @@
/area/quartermaster/storage)
"aIM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17658,8 +17406,6 @@
/area/quartermaster/hallway)
"aIN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17679,8 +17425,6 @@
/area/quartermaster/hallway)
"aIO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -17689,16 +17433,12 @@
/area/quartermaster/hallway)
"aIP" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -17708,8 +17448,6 @@
/area/quartermaster/hallway)
"aIQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17722,13 +17460,9 @@
/area/quartermaster/hallway)
"aIR" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -17741,8 +17475,6 @@
/area/quartermaster/hallway)
"aIS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -18206,8 +17938,6 @@
/area/quartermaster/hallway)
"aJJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -18491,8 +18221,6 @@
/area/maintenance/substation/firstdeck/cargo)
"aKr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -18655,13 +18383,9 @@
/area/maintenance/substation/firstdeck/cargo)
"aKL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -18680,8 +18404,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/plating,
@@ -18822,8 +18544,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm{
@@ -19039,8 +18759,6 @@
},
/obj/structure/cable/green,
/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
icon_state = "16-0"
},
/turf/simulated/floor/plating,
@@ -22434,8 +22152,6 @@
/area/shuttle/escape_pod3/station)
"aSh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning,
@@ -25116,16 +24832,12 @@
/area/security/armoury)
"aWL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
"aWM" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
@@ -25314,8 +25026,6 @@
"aXd" = (
/obj/structure/table/steel,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/material/minihoe,
@@ -25407,8 +25117,6 @@
"aXp" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -25540,8 +25248,6 @@
/area/security/security_lockerroom)
"aXC" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -25625,8 +25331,6 @@
/area/security/prison)
"aXM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -25702,13 +25406,9 @@
"aXT" = (
/obj/structure/table/standard,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/item/clothing/glasses/sunglasses/sechud/tactical,
@@ -25726,8 +25426,6 @@
"aXU" = (
/obj/structure/table/standard,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/storage/box/handcuffs{
@@ -25744,8 +25442,6 @@
/area/security/armoury)
"aXV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -25760,26 +25456,18 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
/area/security/tactical)
"aXX" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
@@ -25855,8 +25543,6 @@
/area/security/security_lockerroom)
"aYe" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -26084,8 +25770,6 @@
/area/security/armoury)
"aYz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -26133,8 +25817,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
@@ -26245,8 +25927,6 @@
"aYM" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -26313,8 +25993,6 @@
/area/security/prison)
"aYS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -26472,8 +26150,6 @@
},
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26572,8 +26248,6 @@
/area/security/security_restroom)
"aZl" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26606,8 +26280,6 @@
/area/security/security_lockerroom)
"aZp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -26671,8 +26343,6 @@
/area/security/prison)
"aZw" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -26736,8 +26406,6 @@
"aZD" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26770,8 +26438,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -26832,13 +26498,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -27012,8 +26674,6 @@
/area/security/prison)
"aZX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/table/steel,
@@ -27135,8 +26795,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27218,8 +26876,6 @@
/area/security/evidence_storage)
"bav" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27235,8 +26891,6 @@
/area/security/security_lockerroom)
"bax" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27324,8 +26978,6 @@
"baG" = (
/obj/structure/table/steel,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/book/codex/corp_regs,
@@ -27337,8 +26989,6 @@
/area/security/prison)
"baH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/outlet_injector{
@@ -27352,8 +27002,6 @@
/area/security/prison)
"baI" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -27397,8 +27045,6 @@
/area/security/prison)
"baM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/bed/chair{
@@ -27505,8 +27151,6 @@
/area/security/security_equiptment_storage)
"baW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -27533,8 +27177,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -27547,18 +27189,12 @@
/area/security/brig)
"baZ" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -27573,8 +27209,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -27595,8 +27229,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
@@ -27609,8 +27241,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -27629,8 +27259,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/landmark{
@@ -27696,8 +27324,6 @@
/area/security/main)
"bbk" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27876,8 +27502,6 @@
/area/security/prison)
"bbz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -28024,8 +27648,6 @@
/obj/item/gun/projectile/colt/detective,
/obj/item/gun/projectile/colt/detective,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -28059,8 +27681,6 @@
},
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/monotile,
@@ -28129,8 +27749,6 @@
/area/security/main)
"bbV" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28143,13 +27761,9 @@
/area/security/main)
"bbW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -28158,8 +27772,6 @@
/area/security/main)
"bbX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28172,8 +27784,6 @@
/area/security/main)
"bbY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -28184,8 +27794,6 @@
/area/security/main)
"bbZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28275,13 +27883,9 @@
/area/security/prison)
"bcj" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/blast/regular{
@@ -28289,8 +27893,6 @@
name = "Cell 2 Door"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -28329,13 +27931,9 @@
/area/security/prison)
"bcm" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/blast/regular{
@@ -28343,8 +27941,6 @@
name = "Cell 1 Door"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -28455,8 +28051,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -28510,8 +28104,6 @@
/obj/item/folder/red,
/obj/item/clothing/glasses/hud/security,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -28637,8 +28229,6 @@
/area/security/security_cell_hallway)
"bcP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -28773,8 +28363,6 @@
/area/security/warden)
"bda" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -28787,8 +28375,6 @@
/area/security/warden)
"bdb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/table/steel_reinforced,
@@ -28843,8 +28429,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -28973,8 +28557,6 @@
/obj/structure/table/standard,
/obj/item/folder/red,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -29075,8 +28657,6 @@
/area/security/security_cell_hallway)
"bdz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29141,8 +28721,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/firealarm{
@@ -29189,8 +28767,6 @@
/area/security/warden)
"bdI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -29300,13 +28876,9 @@
/area/security/main)
"bdU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -29329,8 +28901,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/red,
@@ -29349,16 +28919,12 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/security/main)
"bdX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29373,8 +28939,6 @@
/area/security/main)
"bdY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -29389,8 +28953,6 @@
/area/security/main)
"bdZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29413,8 +28975,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -29578,18 +29138,12 @@
/area/security/security_cell_hallway)
"ben" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -29624,8 +29178,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_security{
@@ -29684,8 +29236,6 @@
/area/security/warden)
"bet" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -29719,8 +29269,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -29740,8 +29288,6 @@
/area/security/brig)
"bey" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -29840,23 +29386,17 @@
/area/security/main)
"beF" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/security/main)
"beG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -29906,18 +29446,12 @@
/area/security/security_cell_hallway)
"beP" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -29952,8 +29486,6 @@
/area/security/security_cell_hallway)
"beR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -30045,8 +29577,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/button/remote/airlock{
@@ -30104,8 +29634,6 @@
pixel_x = 25
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/button/flasher{
@@ -30138,8 +29666,6 @@
/area/security/warden)
"bfd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -30243,8 +29769,6 @@
/area/security/main)
"bfo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -30489,8 +30013,6 @@
/area/security/security_cell_hallway)
"bfI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -30503,13 +30025,9 @@
/area/security/security_cell_hallway)
"bfJ" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -30526,13 +30044,9 @@
/area/security/security_cell_hallway)
"bfK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30546,8 +30060,6 @@
/area/security/security_cell_hallway)
"bfL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/radio/intercom{
@@ -30570,13 +30082,9 @@
/area/security/security_cell_hallway)
"bfM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -30593,8 +30101,6 @@
/area/security/security_cell_hallway)
"bfN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30613,13 +30119,9 @@
/area/security/security_cell_hallway)
"bfO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -30640,8 +30142,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner,
@@ -30654,8 +30154,6 @@
/area/security/security_cell_hallway)
"bfQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30677,8 +30175,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -30694,13 +30190,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -30713,8 +30205,6 @@
},
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -30736,8 +30226,6 @@
/area/security/warden)
"bfW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -30798,8 +30286,6 @@
/area/security/security_processing)
"bgc" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -30821,8 +30307,6 @@
/area/security/security_processing)
"bge" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -30857,8 +30341,6 @@
/area/security/security_processing)
"bgg" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -30874,8 +30356,6 @@
/area/security/main)
"bgi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -30923,8 +30403,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -30968,8 +30446,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -30998,8 +30474,6 @@
name = "Toxins Test Chamber"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/airless,
@@ -31028,8 +30502,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -31066,8 +30538,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -31095,8 +30565,6 @@
/area/security/brig)
"bgG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -31133,13 +30601,9 @@
/area/security/warden)
"bgJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/door/firedoor/glass,
@@ -31151,8 +30615,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/techmaint,
@@ -31195,8 +30657,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -31240,13 +30700,9 @@
/area/security/security_processing)
"bgR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -31276,8 +30732,6 @@
/area/security/brig)
"bgU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -31332,8 +30786,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -31375,8 +30827,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -31443,8 +30893,6 @@
/area/space)
"bhh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/airless,
@@ -31573,8 +31021,6 @@
pixel_x = 21
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -31636,13 +31082,9 @@
/area/security/security_cell_hallway)
"bhy" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -31670,8 +31112,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -31684,8 +31124,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -31698,13 +31136,9 @@
/area/security/brig)
"bhB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -31718,13 +31152,9 @@
/area/security/brig)
"bhC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -31752,8 +31182,6 @@
/area/security/brig)
"bhD" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -31773,8 +31201,6 @@
/area/security/brig)
"bhE" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -31793,13 +31219,9 @@
/area/security/brig)
"bhF" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -31816,13 +31238,9 @@
/area/security/brig)
"bhG" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -31842,8 +31260,6 @@
/area/security/brig)
"bhH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -31859,8 +31275,6 @@
/area/security/brig)
"bhI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/recharger/wallcharger{
@@ -31880,8 +31294,6 @@
/area/security/brig)
"bhJ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -31897,29 +31309,21 @@
/area/security/brig)
"bhK" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
/area/security/brig)
"bhL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -31935,8 +31339,6 @@
/area/security/brig)
"bhM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -31952,13 +31354,9 @@
/area/security/brig)
"bhN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -31978,13 +31376,9 @@
/area/security/brig)
"bhO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -31994,8 +31388,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32008,8 +31400,6 @@
/area/security/brig)
"bhP" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -32028,8 +31418,6 @@
/area/security/brig)
"bhQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -32051,13 +31439,9 @@
/area/security/brig)
"bhR" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -32079,8 +31463,6 @@
/area/security/brig)
"bhS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -32099,8 +31481,6 @@
/area/security/brig)
"bhT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -32113,13 +31493,9 @@
/area/security/brig)
"bhU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -32128,8 +31504,6 @@
/area/security/brig)
"bhV" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -32160,8 +31534,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_security{
@@ -32179,8 +31551,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/security{
@@ -32398,8 +31768,6 @@
/area/security/brig)
"biv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -32452,8 +31820,6 @@
/area/security/brig)
"biz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -32511,8 +31877,6 @@
/area/security/brig)
"biD" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -32572,8 +31936,6 @@
/area/security/brig)
"biH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -32629,8 +31991,6 @@
/area/security/brig)
"biL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -32656,8 +32016,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -32672,8 +32030,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32698,8 +32054,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -32712,8 +32066,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32730,14 +32082,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32756,8 +32104,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -32777,8 +32123,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -32794,8 +32138,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -32812,13 +32154,9 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -32831,8 +32169,6 @@
/area/security/brig)
"biW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -32845,8 +32181,6 @@
/area/security/brig)
"biX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -32860,8 +32194,6 @@
/area/security/brig)
"biY" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -33063,8 +32395,6 @@
/area/security/detectives_office)
"bjp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -33138,8 +32468,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -33202,8 +32530,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -33352,13 +32678,9 @@
/area/security/brig)
"bjR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/warning,
@@ -33485,8 +32807,6 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/lino,
@@ -33495,13 +32815,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/lino,
@@ -33578,8 +32894,6 @@
/area/security/lobby)
"bkl" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -33650,8 +32964,6 @@
/area/crew_quarters/heads/sc/hos)
"bkt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -33660,13 +32972,9 @@
req_access = list(58)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -33988,8 +33296,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -34049,8 +33355,6 @@
name = "Secure Door"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/book/codex/corp_regs,
@@ -34063,13 +33367,9 @@
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/item/paper_bin{
@@ -34087,13 +33387,9 @@
name = "Secure Door"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor,
@@ -34157,13 +33453,9 @@
/area/crew_quarters/heads/sc/hos)
"blo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -34172,8 +33464,6 @@
/area/crew_quarters/heads/sc/hos)
"blp" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -34712,24 +34002,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"bmh" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"bmi" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/lino,
@@ -34742,13 +34026,9 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -34796,8 +34076,6 @@
/area/security/lobby)
"bmo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -34841,8 +34119,6 @@
"bmt" = (
/obj/structure/bed/chair,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -35305,8 +34581,6 @@
/area/security/lobby)
"bnr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -35326,8 +34600,6 @@
/area/rnd/research/firstdeck/hallway)
"bnu" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -35343,8 +34615,6 @@
/area/crew_quarters/heads/sc/hos)
"bnv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/flashlight/lamp/green{
@@ -35356,8 +34626,6 @@
/area/crew_quarters/heads/sc/hos)
"bnw" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -35694,8 +34962,6 @@
/area/security/lobby)
"bol" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -37359,8 +36625,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -38201,8 +37465,6 @@
"bte" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -38264,13 +37526,9 @@
/area/engineering/atmos)
"btk" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/firealarm{
@@ -39397,8 +38655,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -39407,8 +38663,6 @@
/obj/machinery/atmospherics/pipe/manifold/visible/red,
/obj/machinery/meter,
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -39417,8 +38671,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
/obj/machinery/meter,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -39429,8 +38681,6 @@
name = "Scrubber to Waste"
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -39440,8 +38690,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -39453,16 +38701,12 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"bvz" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/universal{
@@ -39470,8 +38714,6 @@
},
/obj/machinery/meter,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -40018,8 +39260,6 @@
"bwv" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/atmos{
@@ -40072,8 +39312,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -40179,8 +39417,6 @@
/area/engineering/atmos/monitoring)
"bwK" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -40200,8 +39436,6 @@
/area/engineering/atmos)
"bwN" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/warning{
@@ -40774,16 +40008,12 @@
/area/space)
"bxM" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/airless,
/area/space)
"bxN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
@@ -40791,8 +40021,6 @@
"bxO" = (
/obj/machinery/light/small,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
@@ -40808,8 +40036,6 @@
req_one_access = list(8,13,65)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/airless,
@@ -41009,8 +40235,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -41051,8 +40275,6 @@
/area/engineering/atmos)
"byh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -41072,8 +40294,6 @@
/area/maintenance/substation/engineering)
"byi" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -41528,8 +40748,6 @@
/obj/machinery/door/firedoor/glass,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -41649,8 +40867,6 @@
/area/engineering/atmos/monitoring)
"bzm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -42207,8 +41423,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -42378,8 +41592,6 @@
/area/engineering/atmos/monitoring)
"bAs" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -42397,8 +41609,6 @@
/area/engineering/atmos)
"bAv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/light/small,
@@ -42479,8 +41689,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning{
@@ -42999,14 +42207,10 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -43166,8 +42370,6 @@
/area/engineering/atmos)
"bBS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -43226,8 +42428,6 @@
"bBX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -43246,8 +42446,6 @@
/area/engineering/atmos)
"bBZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -43255,13 +42453,9 @@
/area/engineering/hallway/atmos_hallway)
"bCa" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/camera/network/engineering{
@@ -43282,16 +42476,12 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/engineering/hallway/atmos_hallway)
"bCc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -43300,13 +42490,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -43319,8 +42505,6 @@
/area/engineering/hallway/atmos_hallway)
"bCe" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -43855,8 +43039,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning,
@@ -44076,8 +43258,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor,
@@ -44566,8 +43746,6 @@
/area/rnd/toxins_launch)
"bEB" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -44695,8 +43873,6 @@
"bEN" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -44847,8 +44023,6 @@
/area/engineering/engineer_eva)
"bFb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -45229,8 +44403,6 @@
/area/rnd/xenobiology/xenoflora)
"bFG" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/alarm{
@@ -45256,8 +44428,6 @@
/area/crew_quarters/heads/sc/hor)
"bFI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -45348,8 +44518,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -45367,8 +44535,6 @@
req_access = list(7)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -45434,8 +44600,6 @@
/obj/item/soap/nanotrasen,
/obj/random/soap,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/extinguisher_cabinet{
@@ -45483,8 +44647,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -45506,8 +44668,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -45520,8 +44680,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -45590,8 +44748,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -45625,8 +44781,6 @@
pixel_y = 32
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
@@ -45645,8 +44799,6 @@
pixel_y = 24
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -45688,8 +44840,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -45795,8 +44945,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
@@ -45816,8 +44964,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -45831,8 +44977,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -45851,8 +44995,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
@@ -45922,8 +45064,6 @@
/area/engineering/foyer)
"bGJ" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -46002,8 +45142,6 @@
"bGQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -46238,8 +45376,6 @@
/area/maintenance/substation/research)
"bHn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -46262,8 +45398,6 @@
/area/crew_quarters/heads/sc/hor)
"bHp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -46350,8 +45484,6 @@
req_access = list(8)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -46404,8 +45536,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/freezer,
@@ -46441,8 +45571,6 @@
/area/rnd/research)
"bHH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite/corner,
@@ -46496,8 +45624,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -46648,8 +45774,6 @@
/area/engineering/hallway/atmos_hallway)
"bIj" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
@@ -46720,8 +45844,6 @@
"bIq" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -46811,8 +45933,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -47067,8 +46187,6 @@
/area/maintenance/substation/research)
"bIQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -47088,8 +46206,6 @@
/area/crew_quarters/heads/sc/hor)
"bIS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/light,
@@ -47103,8 +46219,6 @@
/area/crew_quarters/heads/sc/hor)
"bIT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -47121,8 +46235,6 @@
/area/crew_quarters/heads/sc/hor)
"bIU" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -47252,13 +46364,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -47310,8 +46418,6 @@
/area/rnd/research)
"bJi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -47377,8 +46483,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -47579,8 +46683,6 @@
name = "Engineering Hallway"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -47616,8 +46718,6 @@
/area/engineering/foyer)
"bJS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/sortjunction/flipped{
@@ -47639,8 +46739,6 @@
/area/engineering/foyer)
"bJU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/red,
@@ -47691,8 +46789,6 @@
"bJY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -47921,8 +47017,6 @@
"bKz" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -47934,8 +47028,6 @@
/area/maintenance/substation/research)
"bKA" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -47960,8 +47052,6 @@
pixel_x = -32
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -48076,8 +47166,6 @@
/area/engineering/hallway/engineer_hallway)
"bLd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/sortjunction{
@@ -48126,8 +47214,6 @@
/area/engineering/foyer)
"bLj" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -48155,8 +47241,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -48203,8 +47287,6 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/dark,
@@ -48215,13 +47297,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -48234,13 +47312,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -48262,8 +47336,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -48276,8 +47348,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -48286,16 +47356,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"bLv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48305,8 +47371,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -48317,8 +47381,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/monotile,
@@ -48445,8 +47507,6 @@
/area/rnd/research)
"bLL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning{
@@ -48456,8 +47516,6 @@
/area/rnd/research)
"bLM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -48480,8 +47538,6 @@
pixel_y = 32
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -48494,8 +47550,6 @@
/area/rnd/research)
"bLO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -48509,8 +47563,6 @@
/area/rnd/research)
"bLP" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -48523,13 +47575,9 @@
/area/rnd/research)
"bLQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48548,14 +47596,10 @@
/area/rnd/research)
"bLR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -48574,8 +47618,6 @@
"bLS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48597,8 +47639,6 @@
/area/rnd/research)
"bLT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48620,8 +47660,6 @@
"bLU" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48646,8 +47684,6 @@
/area/rnd/research)
"bLV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48660,8 +47696,6 @@
/area/rnd/research)
"bLW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -48681,8 +47715,6 @@
"bLX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -48699,13 +47731,9 @@
/area/rnd/research)
"bLY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48724,8 +47752,6 @@
/area/rnd/research)
"bLZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48741,8 +47767,6 @@
"bMa" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48770,8 +47794,6 @@
/area/rnd/research)
"bMb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48796,8 +47818,6 @@
/area/rnd/xenobiology/xenoflora)
"bMd" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -48819,8 +47839,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/radio/intercom{
@@ -48843,13 +47861,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
@@ -48868,13 +47882,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -48894,8 +47904,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -48918,8 +47926,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -48937,8 +47943,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -48957,13 +47961,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -48976,8 +47976,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -48996,8 +47994,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -49016,13 +48012,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -49042,8 +48034,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -49062,8 +48052,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/ai_status_display{
@@ -49085,8 +48073,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/firealarm{
@@ -49121,8 +48107,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/emcloset,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -49211,8 +48195,6 @@
"bMM" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -49247,8 +48229,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -49264,8 +48244,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/plating,
@@ -49304,8 +48282,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -49318,8 +48294,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/radio/intercom{
@@ -49331,8 +48305,6 @@
/area/engineering/hallway/engineer_hallway)
"bMU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -49346,8 +48318,6 @@
/area/engineering/hallway/engineer_hallway)
"bMV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -49360,13 +48330,9 @@
/area/engineering/hallway/engineer_hallway)
"bMW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -49379,8 +48345,6 @@
/area/engineering/hallway/engineer_hallway)
"bMX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49390,8 +48354,6 @@
/area/engineering/hallway/engineer_hallway)
"bMY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49404,8 +48366,6 @@
/area/engineering/hallway/engineer_hallway)
"bMZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -49422,8 +48382,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49442,13 +48400,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -49461,8 +48415,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -49471,16 +48423,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
/area/engineering/hallway/engineer_hallway)
"bNe" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -49490,8 +48438,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -49554,8 +48500,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -49617,8 +48561,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -49856,8 +48798,6 @@
/area/rnd/research)
"bNU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -49992,8 +48932,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -50034,8 +48972,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning,
@@ -50070,13 +49006,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -50090,8 +49022,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -50103,8 +49033,6 @@
"bOo" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -50120,13 +49048,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -50146,8 +49070,6 @@
},
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -50244,8 +49166,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -50259,13 +49179,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -50279,8 +49195,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -50301,8 +49215,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -50324,8 +49236,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/dark,
@@ -50355,8 +49265,6 @@
"bON" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -50450,8 +49358,6 @@
/area/engineering/hallway/engineer_hallway)
"bOU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -50462,8 +49368,6 @@
/area/engineering/hallway/engineer_hallway)
"bOV" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -50537,8 +49441,6 @@
req_one_access = list(11,24)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -50562,8 +49464,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -50701,8 +49601,6 @@
/area/rnd/lab)
"bPy" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -50751,8 +49649,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -50769,8 +49665,6 @@
},
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_research{
@@ -50805,8 +49699,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -50835,8 +49727,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -51024,8 +49914,6 @@
req_one_access = list(11,24)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -51071,18 +49959,12 @@
"bQn" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/door/airlock/command{
@@ -51145,8 +50027,6 @@
/area/engineering/foyer)
"bQr" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -51204,15 +50084,11 @@
"bQx" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -51226,8 +50102,6 @@
"bQy" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -51235,8 +50109,6 @@
"bQz" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -51276,8 +50148,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -51607,8 +50477,6 @@
/area/rnd/lab)
"bRh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -51857,13 +50725,9 @@
/area/rnd/misc_lab)
"bRv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -51878,8 +50742,6 @@
/area/rnd/misc_lab)
"bRw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/button/remote/blast_door{
@@ -51986,8 +50848,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -52026,16 +50886,12 @@
/area/rnd/mixing)
"bRH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
/area/rnd/mixing)
"bRI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52127,8 +50983,6 @@
/area/engineering/workshop)
"bRW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -52242,8 +51096,6 @@
/area/crew_quarters/heads/sc/chief)
"bSe" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -52314,8 +51166,6 @@
/area/engineering/foyer)
"bSj" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -52367,8 +51217,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -52411,8 +51259,6 @@
req_one_access = list(10)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -52658,8 +51504,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -52669,8 +51513,6 @@
/area/rnd/lab)
"bSU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -52683,8 +51525,6 @@
/area/rnd/lab)
"bSV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -52702,8 +51542,6 @@
"bSW" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/research{
@@ -52716,8 +51554,6 @@
/area/rnd/misc_lab)
"bSX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -52727,8 +51563,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -52743,13 +51577,9 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -52763,8 +51593,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -52776,8 +51604,6 @@
"bTa" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -52795,8 +51621,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -52814,13 +51638,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52834,8 +51654,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52855,8 +51673,6 @@
name = "Roboticist"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52873,8 +51689,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52900,8 +51714,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -52914,8 +51726,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -52961,13 +51771,9 @@
/area/rnd/misc_lab)
"bTl" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -53040,8 +51846,6 @@
pixel_x = -22
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -53145,8 +51949,6 @@
/area/engineering/engine_room)
"bTH" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner,
@@ -53246,8 +52048,6 @@
/area/crew_quarters/heads/sc/chief)
"bTV" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/bed/chair,
@@ -53342,8 +52142,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -53431,8 +52229,6 @@
/area/engineering/engi_restroom)
"bUk" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -53755,8 +52551,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -53797,8 +52591,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -53829,8 +52621,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -53871,8 +52661,6 @@
"bVg" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
@@ -53948,8 +52736,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -54169,8 +52955,6 @@
"bVX" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/item/folder/yellow_ce,
@@ -54182,13 +52966,9 @@
"bVY" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/item/clipboard,
@@ -54203,8 +52983,6 @@
/area/crew_quarters/heads/sc/chief)
"bVZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -54216,13 +52994,9 @@
"bWa" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/door/airlock/command{
@@ -54234,8 +53008,6 @@
/area/crew_quarters/heads/sc/chief)
"bWb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/junction{
@@ -54252,8 +53024,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54269,8 +53039,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54280,8 +53048,6 @@
/area/engineering/foyer)
"bWe" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -54312,8 +53078,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54330,8 +53094,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54360,8 +53122,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -54376,8 +53136,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/carpet,
@@ -54613,8 +53371,6 @@
"bWO" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -54683,8 +53439,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
@@ -54726,8 +53480,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -54819,8 +53571,6 @@
pixel_x = -28
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -55382,8 +54132,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -55454,8 +54202,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
@@ -55491,8 +54237,6 @@
/area/rnd/misc_lab)
"bYK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -55730,8 +54474,6 @@
/area/crew_quarters/heads/sc/chief)
"bZo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor,
@@ -55863,8 +54605,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 32;
- d2 = 4;
icon_state = "32-4"
},
/obj/machinery/atmospherics/pipe/zpipe/down/supply{
@@ -56185,8 +54925,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/techfloor,
@@ -56196,8 +54934,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -56237,8 +54973,6 @@
/area/rnd/misc_lab)
"cao" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -56251,8 +54985,6 @@
/area/rnd/misc_lab)
"cap" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -56818,8 +55550,6 @@
/area/rnd/xenobiology/xenoflora_isolation)
"cbw" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning{
@@ -56838,8 +55568,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/small,
@@ -56856,13 +55584,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -56876,8 +55600,6 @@
"cbz" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -56894,8 +55616,6 @@
/area/maintenance/substation/central)
"cbA" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
@@ -56965,8 +55685,6 @@
"cbH" = (
/obj/machinery/bluespace_beacon,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -56979,8 +55697,6 @@
/area/maintenance/central)
"cbJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -57282,8 +55998,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -57656,8 +56370,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -57672,16 +56384,12 @@
/area/maintenance/central)
"cdf" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/teleporter)
"cdg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -57754,8 +56462,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -58033,8 +56739,6 @@
"cdY" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -58048,8 +56752,6 @@
/area/engineering/engine_airlock)
"cdZ" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -58066,8 +56768,6 @@
/area/engineering/engine_airlock)
"cea" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -58084,8 +56784,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -58103,13 +56801,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -58428,8 +57122,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/catwalk,
@@ -58439,13 +57131,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -58459,8 +57147,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -58472,8 +57158,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -58749,8 +57433,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -58761,8 +57443,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -58921,8 +57601,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -59317,8 +57995,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -59332,8 +58008,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -59599,8 +58273,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/structure/lattice,
/obj/structure/cable/green{
- d1 = 32;
- d2 = 4;
icon_state = "32-4"
},
/obj/structure/disposalpipe/down{
@@ -59704,8 +58376,6 @@
"chi" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/computer/skills{
@@ -59743,13 +58413,9 @@
pixel_y = 21
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -59760,8 +58426,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -60042,8 +58706,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -60056,8 +58718,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -60352,8 +59012,6 @@
/area/engineering/engine_monitoring)
"ciL" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -61383,8 +60041,6 @@
opacity = 0
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/wingrille_spawn/reinforced_phoron,
@@ -61429,8 +60085,6 @@
req_access = list(10)
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/engine_setup/shutters,
@@ -61438,8 +60092,6 @@
/area/engineering/engine_monitoring)
"ckK" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -61840,8 +60492,6 @@
},
/obj/machinery/meter,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/catwalk,
@@ -61855,8 +60505,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -61870,8 +60518,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/alarm{
@@ -61884,8 +60530,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm{
@@ -61900,8 +60544,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -62316,8 +60958,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/warning/cee{
@@ -62338,8 +60978,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -62353,8 +60991,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -62367,8 +61003,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -62381,13 +61015,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -62399,8 +61029,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -62414,8 +61042,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -62428,13 +61054,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -62450,8 +61072,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -62464,8 +61084,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/blast/regular{
@@ -62505,8 +61123,6 @@
req_access = list(39)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -62519,8 +61135,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -62673,8 +61287,6 @@
opacity = 0
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/wingrille_spawn/reinforced_phoron,
@@ -62688,13 +61300,9 @@
name = "Station Engineer"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -63077,8 +61685,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -63103,8 +61709,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
@@ -63118,8 +61722,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -63301,8 +61903,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -63465,8 +62065,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/blast/regular{
@@ -63532,8 +62130,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -63723,8 +62319,6 @@
name = "Workshop"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -63902,8 +62496,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -64079,8 +62671,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -64113,8 +62703,6 @@
req_one_access = list(5,47)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -64135,8 +62723,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/hydro,
@@ -64147,8 +62733,6 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -64159,8 +62743,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -64171,8 +62753,6 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -64182,8 +62762,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -64235,8 +62813,6 @@
/area/engineering/engine_smes)
"cpQ" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
@@ -64507,8 +63083,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -64572,8 +63146,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -64889,8 +63461,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -64946,8 +63516,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -65016,8 +63584,6 @@
/area/medical/virology)
"crG" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/hatch{
@@ -65033,8 +63599,6 @@
/area/engineering/engine_smes)
"crH" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/yellow{
@@ -65060,13 +63624,9 @@
/area/engineering/engine_smes)
"crI" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -65084,8 +63644,6 @@
/area/engineering/engine_smes)
"crJ" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/light{
@@ -65388,8 +63946,6 @@
"csn" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -65478,8 +64034,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -65748,8 +64302,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -65919,8 +64471,6 @@
/area/engineering/engine_smes)
"cty" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -65952,8 +64502,6 @@
/area/engineering/engine_smes)
"ctz" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/table/steel,
@@ -66192,8 +64740,6 @@
/obj/machinery/atmospherics/valve/digital/open,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -66205,16 +64751,12 @@
req_one_access = list(12,19)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/hallway/primary/seconddeck/stairwell)
"cuc" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -66277,8 +64819,6 @@
"cul" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -66449,8 +64989,6 @@
pixel_x = -32
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -66874,8 +65412,6 @@
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -66918,8 +65454,6 @@
/obj/structure/closet/secure_closet/hop,
/obj/item/megaphone,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -66936,13 +65470,9 @@
"cvN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -67203,8 +65733,6 @@
pixel_y = 28
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/corner/paleblue{
@@ -67502,8 +66030,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -67522,8 +66048,6 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -67720,8 +66244,6 @@
/area/quartermaster/foyer)
"cxn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -67944,16 +66466,12 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/sc/hop)
"cxN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -67966,8 +66484,6 @@
/area/crew_quarters/heads/sc/hop)
"cxO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -68166,13 +66682,9 @@
/area/medical/reception)
"cyh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -68191,8 +66703,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68222,8 +66732,6 @@
req_access = list(5)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68242,8 +66750,6 @@
/area/medical/reception)
"cyk" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68262,8 +66768,6 @@
/area/medical/foyer)
"cyl" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68283,8 +66787,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68297,8 +66799,6 @@
/area/medical/foyer)
"cyn" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -68308,8 +66808,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/camera/network/medbay{
@@ -68450,8 +66948,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -68618,8 +67114,6 @@
/area/quartermaster/foyer)
"cze" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -68981,8 +67475,6 @@
"czN" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/stool/padded,
@@ -69244,8 +67736,6 @@
"cAi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -69753,8 +68243,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -69828,8 +68316,6 @@
/area/medical/reception)
"cBD" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -70060,13 +68546,9 @@
"cBW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -70180,8 +68662,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_research{
@@ -70284,8 +68764,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -70368,8 +68846,6 @@
/area/quartermaster/foyer)
"cCv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -70714,8 +69190,6 @@
/area/medical/medbay_emt_bay)
"cDa" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -70790,8 +69264,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -70822,8 +69294,6 @@
/area/medical/reception)
"cDi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -71013,13 +69483,9 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71034,8 +69500,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -71049,8 +69513,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -71058,8 +69520,6 @@
/area/medical/medbay2)
"cDB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71077,8 +69537,6 @@
"cDC" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71094,8 +69552,6 @@
/area/medical/medical_restroom)
"cDD" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71271,8 +69727,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -71335,8 +69789,6 @@
"cEe" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_mining{
@@ -71377,8 +69829,6 @@
/area/quartermaster/qm)
"cEg" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -71593,8 +70043,6 @@
/area/maintenance/medbay)
"cEC" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/multi_tile/glass{
@@ -71630,8 +70078,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -71695,8 +70141,6 @@
/area/medical/reception)
"cEM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -71852,8 +70296,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
@@ -71867,8 +70309,6 @@
/area/medical/chemistry)
"cEX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera/network/medbay{
@@ -71923,8 +70363,6 @@
/area/maintenance/cargo)
"cFa" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -71976,8 +70414,6 @@
/area/engineering/hallway/atmos_hallway)
"cFd" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -72013,8 +70449,6 @@
"cFg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -72247,8 +70681,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -72319,8 +70751,6 @@
/area/quartermaster/office)
"cFL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -72353,8 +70783,6 @@
"cFN" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -72548,8 +70976,6 @@
/area/medical/medbay)
"cGl" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/radio/intercom/department/medbay{
@@ -72598,8 +71024,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -72629,8 +71053,6 @@
"cGu" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_medical{
@@ -72674,8 +71096,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_medical{
@@ -72696,8 +71116,6 @@
name = "Medbay Equipment"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -72716,8 +71134,6 @@
name = "Secondary Storage"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -72927,8 +71343,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/button/remote/blast_door{
@@ -73008,8 +71422,6 @@
/area/quartermaster/office)
"cHi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -73052,8 +71464,6 @@
/area/quartermaster/office)
"cHm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -73316,8 +71726,6 @@
/area/medical/medbay)
"cHO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -73364,13 +71772,9 @@
"cHT" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/hologram/holopad,
@@ -73385,8 +71789,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73405,8 +71807,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -73428,8 +71828,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -73449,8 +71847,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73470,8 +71866,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73490,8 +71884,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -73512,13 +71904,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73540,8 +71928,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73560,8 +71946,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73580,13 +71964,9 @@
/area/medical/medbay)
"cId" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -73607,8 +71987,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -73624,8 +72002,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/corner_steel_grid{
@@ -73638,8 +72014,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -73664,13 +72038,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -73687,8 +72057,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -73704,8 +72072,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -73723,13 +72089,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -73747,8 +72109,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -73764,8 +72124,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -73782,8 +72140,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -73796,8 +72152,6 @@
/area/medical/medbay2)
"cIo" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -73813,15 +72167,11 @@
/area/medical/medbay2)
"cIp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -73837,13 +72187,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -73861,8 +72207,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -73881,8 +72225,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -73899,8 +72241,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -73910,8 +72250,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -73930,8 +72268,6 @@
pixel_y = 30
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -73944,8 +72280,6 @@
/area/medical/medbay2)
"cIw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -73960,13 +72294,9 @@
"cIx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -73983,8 +72313,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -73997,8 +72325,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -74014,8 +72340,6 @@
pixel_x = 21
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -74085,8 +72409,6 @@
/area/maintenance/cargo)
"cII" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -74185,8 +72507,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -74208,8 +72528,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -74219,13 +72537,9 @@
/area/quartermaster/warehouse)
"cIT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -74237,8 +72551,6 @@
/area/quartermaster/office)
"cIU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74256,8 +72568,6 @@
/area/quartermaster/office)
"cIV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74273,8 +72583,6 @@
/area/quartermaster/office)
"cIW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -74290,8 +72598,6 @@
/area/quartermaster/office)
"cIX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -74305,8 +72611,6 @@
/area/quartermaster/office)
"cIY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -74318,13 +72622,9 @@
/area/quartermaster/office)
"cIZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74335,16 +72635,12 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"cJa" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74362,8 +72658,6 @@
/area/quartermaster/office)
"cJb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74382,8 +72676,6 @@
/area/quartermaster/office)
"cJc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74399,8 +72691,6 @@
/area/quartermaster/office)
"cJd" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -74414,8 +72704,6 @@
/area/quartermaster/office)
"cJe" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74437,8 +72725,6 @@
/area/quartermaster/office)
"cJf" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -74461,8 +72747,6 @@
/area/quartermaster/lockerroom)
"cJg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -74472,8 +72756,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -74492,8 +72774,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -74515,8 +72795,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -74651,13 +72929,9 @@
/area/rnd/xenobiology/xenoflora_isolation)
"cJy" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/radio/intercom{
@@ -74673,8 +72947,6 @@
pixel_y = -32
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -74692,8 +72964,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -74709,8 +72979,6 @@
/area/medical/medbay)
"cJB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -74724,8 +72992,6 @@
/area/medical/medbay)
"cJC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -74741,13 +73007,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -74855,8 +73117,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -75111,8 +73371,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite/corner,
@@ -75284,8 +73542,6 @@
/area/quartermaster/warehouse)
"cKB" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -75310,8 +73566,6 @@
"cKF" = (
/obj/machinery/photocopier,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -75356,8 +73610,6 @@
/area/quartermaster/lockerroom)
"cKK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -75498,8 +73750,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -75532,8 +73782,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -75579,8 +73827,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/medical{
@@ -75635,8 +73881,6 @@
/area/medical/medbay2)
"cLt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -75868,8 +74112,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/hydro,
@@ -75911,8 +74153,6 @@
/area/maintenance/substation/cargo)
"cLZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -76039,8 +74279,6 @@
/area/maintenance/substation/medical)
"cMm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
@@ -76060,8 +74298,6 @@
/area/maintenance/substation/medical)
"cMn" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/table/steel,
@@ -76106,8 +74342,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -76234,13 +74468,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -76355,8 +74585,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet/sblucarpet,
@@ -76405,13 +74633,9 @@
/area/medical/medbay2)
"cMQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -76432,8 +74656,6 @@
name = "Locker Room"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -76446,8 +74668,6 @@
/area/medical/medical_lockerroom)
"cMS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -76640,8 +74860,6 @@
/area/quartermaster/office)
"cNl" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/firealarm{
@@ -76932,8 +75150,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -77030,8 +75246,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -77135,8 +75349,6 @@
"cOf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -77232,8 +75444,6 @@
/area/medical/medbay2)
"cOn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -77576,8 +75786,6 @@
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -77723,8 +75931,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
@@ -77870,8 +76076,6 @@
/area/medical/medbay2)
"cPw" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -78438,8 +76642,6 @@
/area/crew_quarters/heads/sc/cmo)
"cQr" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -78449,8 +76651,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -78548,13 +76748,9 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
@@ -78567,8 +76763,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/body_scanconsole{
@@ -78584,8 +76778,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -78593,8 +76785,6 @@
/area/medical/sleeper)
"cQC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -78608,16 +76798,12 @@
"cQD" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
/area/medical/cryo)
"cQE" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -78633,16 +76819,12 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
/area/medical/cryo)
"cQG" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -78651,13 +76833,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -78700,8 +76878,6 @@
/area/medical/medbay2)
"cQM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -78765,8 +76941,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_medical{
@@ -79208,8 +77382,6 @@
/area/medical/sleeper)
"cRD" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -79327,8 +77499,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/item/radio/intercom/department/medbay{
@@ -79351,8 +77521,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -79376,8 +77544,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -79535,8 +77701,6 @@
/area/medical/medbay2)
"cRX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -79974,8 +78138,6 @@
"cSQ" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -80090,8 +78252,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -80109,8 +78269,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/medical{
@@ -80124,8 +78282,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -80140,8 +78296,6 @@
/area/medical/medbay2)
"cTg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -80629,13 +78783,9 @@
/area/medical/ward)
"cTZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -80904,8 +79054,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/wood,
@@ -80923,8 +79071,6 @@
req_access = list(25)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -80965,8 +79111,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/lino,
@@ -81276,8 +79420,6 @@
/area/medical/ward)
"cVn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -81554,8 +79696,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/lino,
@@ -81813,8 +79953,6 @@
/area/medical/ward)
"cWw" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -81828,8 +79966,6 @@
"cWx" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81842,8 +79978,6 @@
/area/medical/ward)
"cWy" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81856,13 +79990,9 @@
/area/medical/ward)
"cWz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -81871,13 +80001,9 @@
/area/medical/ward)
"cWA" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -81890,8 +80016,6 @@
/area/medical/ward)
"cWB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81902,8 +80026,6 @@
/area/medical/ward)
"cWC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -81918,8 +80040,6 @@
/area/medical/ward)
"cWD" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -81929,8 +80049,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -81943,8 +80061,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -81969,8 +80085,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -81989,8 +80103,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -82003,13 +80115,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -82028,8 +80136,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light{
@@ -82052,13 +80158,9 @@
pixel_y = 22
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -82074,8 +80176,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera/network/medbay{
@@ -82094,8 +80194,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloorwhite{
@@ -82210,8 +80308,6 @@
name = "Bar Shutters"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -82303,8 +80399,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/freezer,
@@ -82507,8 +80601,6 @@
/area/crew_quarters/cafeteria)
"cXw" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/light{
@@ -82641,8 +80733,6 @@
/area/medical/ward)
"cXI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -82683,8 +80773,6 @@
/area/medical/ward)
"cXM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -82713,8 +80801,6 @@
/area/medical/ward)
"cXP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -82754,8 +80840,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -82802,8 +80886,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -82841,8 +80923,6 @@
"cYc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -82932,8 +81012,6 @@
/obj/item/stool/padded,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/wood,
@@ -83009,8 +81087,6 @@
name = "Unisex Restrooms"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83033,8 +81109,6 @@
/area/crew_quarters/sleep/vistor_room_1)
"cYz" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83093,8 +81167,6 @@
/area/crew_quarters/sleep/vistor_room_2)
"cYE" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83103,8 +81175,6 @@
/area/crew_quarters/sleep/vistor_room_2)
"cYF" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83228,8 +81298,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83257,8 +81325,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -83298,8 +81364,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83321,8 +81385,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/medical{
@@ -83347,8 +81409,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/medical{
@@ -83372,8 +81432,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/medical{
@@ -83446,8 +81504,6 @@
/area/crew_quarters/sleep/vistor_room_2)
"cZp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -83585,8 +81641,6 @@
name = "Room 1"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83599,8 +81653,6 @@
name = "Room 2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83623,8 +81675,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83704,8 +81754,6 @@
/area/crew_quarters/locker)
"cZN" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -83756,8 +81804,6 @@
/area/crew_quarters/locker)
"cZR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -83840,8 +81886,6 @@
/area/medical/surgery)
"cZW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83886,8 +81930,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -83911,8 +81953,6 @@
/area/medical/surgery2)
"dab" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83979,8 +82019,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -83996,8 +82034,6 @@
pixel_y = 16
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/freezer,
@@ -84051,8 +82087,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -84094,8 +82128,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -84342,8 +82374,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -84569,13 +82599,9 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -84591,8 +82617,6 @@
/area/crew_quarters/locker)
"daV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -84628,8 +82652,6 @@
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/green/bordercorner,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -84733,8 +82755,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -84933,8 +82953,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85119,8 +83137,6 @@
/area/medical/biostorage)
"dbM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85151,8 +83167,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -85167,8 +83181,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -85183,13 +83195,9 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -85200,8 +83208,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -85214,8 +83220,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -85276,8 +83280,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/green/border,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -85569,8 +83571,6 @@
/area/crew_quarters/cafeteria)
"dcy" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -85580,8 +83580,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -85721,8 +83719,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -86423,8 +84419,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -86480,8 +84474,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
@@ -86519,8 +84511,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -86531,21 +84521,15 @@
/area/crew_quarters/kitchen)
"dem" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/crew_quarters/cafeteria)
"den" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -86596,8 +84580,6 @@
/area/hallway/primary/seconddeck/aft)
"det" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -86706,8 +84688,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -86736,8 +84716,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -86748,13 +84726,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -86781,13 +84755,9 @@
/area/crew_quarters/locker)
"deH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/wood,
@@ -86841,13 +84811,9 @@
/area/crew_quarters/locker)
"deO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
@@ -86863,8 +84829,6 @@
/area/maintenance/substation/command)
"deP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -86957,8 +84921,6 @@
req_access = list(28)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -86983,8 +84945,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_medical{
@@ -86995,8 +84955,6 @@
/area/medical/first_aid_station/seconddeck/aft)
"dfd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -87069,8 +85027,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -87096,8 +85052,6 @@
"dfn" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/wood,
@@ -87126,8 +85080,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -87171,21 +85123,15 @@
name = "Locker Room"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
/area/crew_quarters/locker)
"dfu" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -87195,29 +85141,21 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
"dfv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
"dfw" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -87236,8 +85174,6 @@
/area/hydroponics)
"dfy" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -87327,8 +85263,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -87338,16 +85272,12 @@
/area/hallway/primary/seconddeck/aft)
"dfI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
"dfJ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -87357,8 +85287,6 @@
/area/hallway/primary/seconddeck/aft)
"dfK" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -87373,8 +85301,6 @@
"dfL" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass{
@@ -87384,8 +85310,6 @@
/area/hallway/primary/seconddeck/aft)
"dfM" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -87478,8 +85402,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -87487,8 +85409,6 @@
"dfW" = (
/obj/structure/bed/chair,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -87497,8 +85417,6 @@
/area/crew_quarters/locker)
"dfX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/navbeacon/patrol{
@@ -87533,8 +85451,6 @@
/area/crew_quarters/locker)
"dgc" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -87594,8 +85510,6 @@
/area/hallway/primary/seconddeck/aft)
"dgi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -87613,8 +85527,6 @@
pixel_y = -1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -87660,8 +85572,6 @@
/area/hydroponics)
"dgn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/hydro,
@@ -87731,8 +85641,6 @@
/obj/structure/table/glass,
/obj/item/coin/silver,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/deck/cards,
@@ -87865,8 +85773,6 @@
/area/hallway/primary/seconddeck/aft)
"dgJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -87884,8 +85790,6 @@
"dgL" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass{
@@ -87901,8 +85805,6 @@
/area/crew_quarters/locker)
"dgN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -87951,8 +85853,6 @@
/area/hydroponics)
"dgS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -87966,8 +85866,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -87980,8 +85878,6 @@
/area/hallway/primary/seconddeck/aft)
"dgU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -88034,8 +85930,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -88062,8 +85956,6 @@
name = "Central Access"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -88249,13 +86141,9 @@
/area/chapel/main)
"dhz" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -88334,8 +86222,6 @@
/area/maintenance/substation/civilian)
"dhI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -88398,8 +86284,6 @@
/area/crew_quarters/locker)
"dhO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -88414,8 +86298,6 @@
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lime/bordercorner,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -88455,8 +86337,6 @@
/area/hallway/primary/seconddeck/port)
"dhT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -88469,16 +86349,12 @@
/area/hallway/primary/seconddeck/aft)
"dhU" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/seconddeck/aft)
"dhV" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -88487,13 +86363,9 @@
/area/hallway/primary/seconddeck/aft)
"dhW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor/corner,
@@ -88572,8 +86444,6 @@
"dif" = (
/obj/structure/table/wooden_reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/paper_bin{
@@ -88651,8 +86521,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -88664,8 +86532,6 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -88801,8 +86667,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/flashlight/lamp{
@@ -88831,8 +86695,6 @@
/area/chapel/office)
"diJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -88898,8 +86760,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm{
@@ -88964,8 +86824,6 @@
/area/library)
"diX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -88983,8 +86841,6 @@
/area/hallway/primary/seconddeck/aft)
"diY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -89045,8 +86901,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -89277,13 +87131,9 @@
req_access = list(28)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -89351,8 +87201,6 @@
/area/chapel/office)
"djL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
@@ -89365,13 +87213,9 @@
/area/chapel/office)
"djN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/wood,
@@ -89485,8 +87329,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
@@ -89536,8 +87378,6 @@
/area/chapel/main)
"dkf" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -89585,8 +87425,6 @@
/area/library)
"dkk" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -89636,8 +87474,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/lino,
@@ -89775,8 +87611,6 @@
/area/library)
"dkD" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -89809,8 +87643,6 @@
/area/chapel/main)
"dkH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
@@ -89826,8 +87658,6 @@
/area/chapel/main)
"dkJ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -89837,16 +87667,12 @@
/area/chapel/main)
"dkK" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/item/radio/intercom{
@@ -89860,8 +87686,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -89871,8 +87695,6 @@
/area/chapel/main)
"dkM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -89886,8 +87708,6 @@
/area/chapel/main)
"dkN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -89897,8 +87717,6 @@
/area/chapel/main)
"dkO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -89906,13 +87724,9 @@
/area/chapel/main)
"dkP" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -89925,8 +87739,6 @@
/area/chapel/main)
"dkQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -90045,8 +87857,6 @@
/area/library)
"dld" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/camera/network/second_deck{
@@ -90091,8 +87901,6 @@
/area/maintenance/substation/civilian)
"dlf" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -90106,8 +87914,6 @@
/area/maintenance/substation/civilian)
"dlg" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -90133,8 +87939,6 @@
/area/library)
"dli" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -90157,8 +87961,6 @@
name = "Chapel"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -90246,16 +88048,12 @@
/area/library)
"dlv" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/wood,
/area/library)
"dlw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -90276,13 +88074,9 @@
/area/library)
"dlz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor{
@@ -90299,8 +88093,6 @@
/area/hallway/primary/seconddeck/aft)
"dlA" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -90310,8 +88102,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -90325,8 +88115,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -90422,13 +88210,9 @@
wires = 7
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -90442,8 +88226,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -90515,8 +88297,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor{
@@ -90532,8 +88312,6 @@
/area/hallway/primary/seconddeck/aft)
"dlU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -90556,8 +88334,6 @@
/area/library)
"dlY" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -90574,8 +88350,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -90589,8 +88363,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -90732,8 +88504,6 @@
/area/chapel/main)
"dms" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/extinguisher_cabinet{
@@ -90765,8 +88535,6 @@
/obj/structure/table/woodentable,
/obj/item/storage/fancy/candle_box,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -90809,8 +88577,6 @@
/area/library)
"dmz" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -90823,8 +88589,6 @@
/area/library)
"dmA" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -90837,8 +88601,6 @@
/area/library)
"dmB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -90849,8 +88611,6 @@
/area/library)
"dmC" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -90873,8 +88633,6 @@
"dmE" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
@@ -90927,8 +88685,6 @@
/area/library)
"dmP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -91001,8 +88757,6 @@
/area/library)
"dna" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -91106,8 +88860,6 @@
/area/hallway/secondary/docking_hallway2)
"dnn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -91336,8 +89088,6 @@
/area/library)
"dnK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -91364,8 +89114,6 @@
/area/chapel/main)
"dnO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -91497,13 +89245,9 @@
/area/hallway/secondary/docking_hallway2)
"doa" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -91521,8 +89265,6 @@
/area/hallway/secondary/docking_hallway2)
"dob" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91543,16 +89285,12 @@
/area/hallway/secondary/docking_hallway2)
"doc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -91564,8 +89302,6 @@
/area/hallway/secondary/docking_hallway2)
"dod" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91581,8 +89317,6 @@
/area/hallway/secondary/docking_hallway2)
"doe" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -91599,8 +89333,6 @@
/area/hallway/secondary/docking_hallway2)
"dof" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -91616,13 +89348,9 @@
/area/hallway/secondary/docking_hallway2)
"dog" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -91636,8 +89364,6 @@
/area/hallway/secondary/docking_hallway2)
"doh" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91650,8 +89376,6 @@
/area/hallway/secondary/docking_hallway2)
"doi" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91672,8 +89396,6 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91686,8 +89408,6 @@
/area/hallway/secondary/docking_hallway2)
"dok" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -91704,8 +89424,6 @@
/area/hallway/primary/seconddeck/aft)
"dol" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -91960,8 +89678,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass,
@@ -91982,8 +89698,6 @@
/area/hallway/secondary/docking_hallway2)
"doU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92022,8 +89736,6 @@
/area/hallway/primary/seconddeck/aft)
"doZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92151,8 +89863,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -92201,16 +89911,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/wood,
/area/hallway/secondary/entry/docking_lounge)
"dpz" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
@@ -92243,8 +89949,6 @@
name = "Primary Tool Storage"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92268,8 +89972,6 @@
"dpG" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92452,8 +90154,6 @@
/area/storage/primary)
"dqd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92502,8 +90202,6 @@
/area/security/checkpoint2)
"dqg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92611,8 +90309,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -92664,8 +90360,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -92767,8 +90461,6 @@
/area/storage/primary)
"dqM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -92779,8 +90471,6 @@
name = "Assistant"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -92892,16 +90582,12 @@
"dqZ" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/construction/seconddeck/construction2)
"dra" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/computer/guestpass{
@@ -92911,21 +90597,15 @@
/area/construction/seconddeck/construction2)
"drb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
/area/construction/seconddeck/construction2)
"drc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{
@@ -92938,8 +90618,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/cap/hidden/supply{
@@ -92955,8 +90633,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -92965,13 +90641,9 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
@@ -93184,8 +90856,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -93199,8 +90869,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -93216,8 +90884,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/industrial/warning,
@@ -93266,8 +90932,6 @@
/area/construction/seconddeck/construction2)
"drI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -93285,8 +90949,6 @@
/area/construction/seconddeck/construction2)
"drL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -93551,8 +91213,6 @@
/area/construction/seconddeck/construction2)
"dso" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/door_assembly,
@@ -93565,8 +91225,6 @@
name = "Room 2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -93825,8 +91483,6 @@
/area/construction/seconddeck/construction2)
"dsO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -93842,8 +91498,6 @@
/area/construction/seconddeck/construction2)
"dsQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -98335,8 +95989,6 @@
"dBn" = (
/obj/effect/floor_decal/industrial/warning/cee,
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/hologram/holopad,
@@ -98344,8 +95996,6 @@
/area/ai)
"dBo" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
@@ -98355,8 +96005,6 @@
dir = 10
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -98388,13 +96036,9 @@
/area/solar/foreportsolar)
"dBt" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -98425,8 +96069,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techfloor,
@@ -98436,8 +96078,6 @@
icon_state = "motion0"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -98472,8 +96112,6 @@
icon_state = "motion0"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -98509,13 +96147,9 @@
/area/solar/forestarboardsolar)
"dBE" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -98549,18 +96183,12 @@
/area/solar/foreportsolar)
"dBH" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -98574,8 +96202,6 @@
/area/ai)
"dBJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/greengrid,
@@ -98616,18 +96242,12 @@
/area/ai)
"dBO" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -98673,8 +96293,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -98747,8 +96365,6 @@
req_one_access = list()
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -98760,13 +96376,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
@@ -98852,8 +96464,6 @@
"dCe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/greengrid,
@@ -98897,24 +96507,18 @@
/area/construction/seconddeck/construction2)
"dCn" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/reinforced/airless,
/area/thirddeck/roof)
"dCo" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/reinforced/airless,
/area/thirddeck/roof)
"dCp" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/wall/r_wall,
@@ -98924,8 +96528,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -98940,8 +96542,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -99002,8 +96602,6 @@
/area/maintenance/solars/forestarboardsolar)
"dCC" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/airless,
@@ -99074,8 +96672,6 @@
/area/maintenance/thirddeck/foreport)
"dCL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/reinforced/airless,
@@ -99127,8 +96723,6 @@
dir = 9
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -99235,34 +96829,24 @@
/area/solar/foreportsolar)
"dDd" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
/area/solar/foreportsolar)
"dDe" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/airless,
/area/solar/foreportsolar)
"dDf" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -99270,8 +96854,6 @@
/area/solar/foreportsolar)
"dDg" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/access_button{
@@ -99289,8 +96871,6 @@
/area/solar/foreportsolar)
"dDh" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -99305,8 +96885,6 @@
/area/maintenance/solars/foreportsolar)
"dDi" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/cee{
@@ -99335,8 +96913,6 @@
/area/maintenance/solars/foreportsolar)
"dDj" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/cee{
@@ -99354,8 +96930,6 @@
dir = 6
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -99373,13 +96947,9 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/meter,
@@ -99400,8 +96970,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/industrial/warning,
@@ -99489,8 +97057,6 @@
/area/maintenance/thirddeck/foreport)
"dDu" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -99526,8 +97092,6 @@
},
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -99542,8 +97106,6 @@
dir = 8
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -99553,8 +97115,6 @@
dir = 1
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -99652,8 +97212,6 @@
},
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
@@ -99663,13 +97221,9 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/meter,
@@ -99690,8 +97244,6 @@
dir = 10
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -99709,8 +97261,6 @@
dir = 8
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/small,
@@ -99725,8 +97275,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
@@ -99752,8 +97300,6 @@
/area/maintenance/solars/forestarboardsolar)
"dDM" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -99768,8 +97314,6 @@
/area/maintenance/solars/forestarboardsolar)
"dDN" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/access_button{
@@ -99787,8 +97331,6 @@
/area/solar/forestarboardsolar)
"dDO" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -99915,8 +97457,6 @@
/area/maintenance/thirddeck/foreport)
"dEc" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -100013,18 +97553,12 @@
/area/ninja_dojo/thirddeck)
"dEo" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -100054,8 +97588,6 @@
name = "AI core maintenance hatch"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -100083,18 +97615,12 @@
/area/maintenance/thirddeck/forestarboard)
"dEx" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -100137,8 +97663,6 @@
/area/ai/ai_upload)
"dED" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -100203,24 +97727,18 @@
/area/thirddeck/roof)
"dEL" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/bluegrid,
/area/ai/ai_upload)
"dEM" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/bluegrid,
/area/ai/ai_upload)
"dEN" = (
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -100231,8 +97749,6 @@
"dEO" = (
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -100242,13 +97758,9 @@
/area/ai/ai_upload)
"dEP" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -100330,8 +97842,6 @@
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -100368,13 +97878,9 @@
/area/maintenance/thirddeck/forestarboard)
"dFc" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
@@ -100416,8 +97922,6 @@
/area/ai/ai_upload)
"dFg" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -100467,13 +97971,9 @@
/area/maintenance/thirddeck/forestarboard)
"dFl" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
@@ -100514,8 +98014,6 @@
"dFr" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -100635,8 +98133,6 @@
dir = 1
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -100727,8 +98223,6 @@
/area/maintenance/thirddeck/forestarboard)
"dFK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -100781,8 +98275,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techfloor,
@@ -100790,8 +98282,6 @@
"dFQ" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -100816,8 +98306,6 @@
pixel_y = -24
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -100832,13 +98320,9 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/hologram/holopad,
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -100850,13 +98334,9 @@
dir = 6
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -100871,8 +98351,6 @@
"dFU" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -100896,8 +98374,6 @@
dir = 4
},
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/landmark/start{
@@ -100952,8 +98428,6 @@
/area/maintenance/thirddeck/forestarboard)
"dGa" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -100962,8 +98436,6 @@
/area/maintenance/thirddeck/forestarboard)
"dGb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -100997,8 +98469,6 @@
/area/maintenance/substation/command)
"dGh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
@@ -101128,8 +98598,6 @@
/area/rnd/xenobiology/xenoflora)
"dGz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -101141,8 +98609,6 @@
/area/maintenance/thirddeck/forestarboard)
"dGA" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101297,8 +98763,6 @@
/area/crew_quarters/heads/sc/hor/quarters)
"dGW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -101311,8 +98775,6 @@
/area/maintenance/thirddeck/forestarboard)
"dGX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101353,8 +98815,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101489,8 +98949,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101535,8 +98993,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101573,8 +99029,6 @@
/area/maintenance/thirddeck/foreport)
"dHs" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -101585,8 +99039,6 @@
"dHt" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -101609,8 +99061,6 @@
/area/crew_quarters/heads/sc/hop/quarters)
"dHv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101741,8 +99191,6 @@
/area/crew_quarters/heads/sc/cmo/quarters)
"dHK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -101771,8 +99219,6 @@
/area/crew_quarters/heads/sc/hor/quarters)
"dHN" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -101794,8 +99240,6 @@
"dHP" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -101840,8 +99284,6 @@
/area/hallway/primary/thirddeck/port)
"dHV" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -101879,8 +99321,6 @@
"dIa" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -101943,8 +99383,6 @@
"dIi" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -101962,8 +99400,6 @@
"dIk" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -101997,8 +99433,6 @@
/area/hallway/primary/thirddeck/starboard)
"dIp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden{
@@ -102121,8 +99555,6 @@
/area/hallway/primary/thirddeck/port)
"dIB" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -102191,8 +99623,6 @@
/area/hallway/primary/thirddeck/port)
"dII" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -102360,8 +99790,6 @@
/area/hallway/primary/thirddeck/starboard)
"dIY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -102457,8 +99885,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -102597,13 +100023,9 @@
/area/hallway/primary/thirddeck/port)
"dJs" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -102612,8 +100034,6 @@
/area/hallway/primary/thirddeck/port)
"dJt" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102630,8 +100050,6 @@
/area/hallway/primary/thirddeck/port)
"dJu" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -102646,8 +100064,6 @@
/area/hallway/primary/thirddeck/port)
"dJv" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102661,8 +100077,6 @@
/area/hallway/primary/thirddeck/port)
"dJw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102675,13 +100089,9 @@
/area/hallway/primary/thirddeck/port)
"dJx" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102694,8 +100104,6 @@
/area/hallway/primary/thirddeck/port)
"dJy" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -102708,18 +100116,12 @@
/area/hallway/primary/thirddeck/port)
"dJz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -102728,8 +100130,6 @@
/area/hallway/primary/thirddeck/port)
"dJA" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -102742,8 +100142,6 @@
/area/hallway/primary/thirddeck/port)
"dJB" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -102767,13 +100165,9 @@
/area/maintenance/research)
"dJD" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -102792,8 +100186,6 @@
/area/maintenance/research)
"dJF" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -102808,8 +100200,6 @@
/area/hallway/primary/thirddeck/port)
"dJG" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -102848,8 +100238,6 @@
/area/hallway/primary/thirddeck/central)
"dJK" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -102865,8 +100253,6 @@
/area/hallway/primary/thirddeck/central)
"dJL" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -102881,8 +100267,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102898,18 +100282,12 @@
/area/hallway/primary/thirddeck/starboard)
"dJN" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -102918,8 +100296,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102932,8 +100308,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJP" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102946,8 +100320,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -102958,13 +100330,9 @@
/area/hallway/primary/thirddeck/starboard)
"dJR" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102977,8 +100345,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -102992,8 +100358,6 @@
/area/hallway/primary/thirddeck/starboard)
"dJT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -103010,13 +100374,9 @@
/area/hallway/primary/thirddeck/starboard)
"dJU" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -103109,8 +100469,6 @@
/area/hallway/primary/thirddeck/port)
"dKd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -103152,8 +100510,6 @@
/area/hallway/primary/thirddeck/port)
"dKi" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -103190,13 +100546,9 @@
/area/hallway/primary/thirddeck/port)
"dKl" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -103243,8 +100595,6 @@
/area/hallway/primary/thirddeck/central)
"dKo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -103257,8 +100607,6 @@
/area/hallway/primary/thirddeck/central)
"dKp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -103318,8 +100666,6 @@
/area/hallway/primary/thirddeck/starboard)
"dKv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
@@ -103387,8 +100733,6 @@
/area/hallway/primary/thirddeck/port)
"dKF" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -103412,8 +100756,6 @@
"dKJ" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -103434,8 +100776,6 @@
"dKM" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -103460,8 +100800,6 @@
/area/crew_quarters/heads/sc/chief/quarters)
"dKP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -103478,8 +100816,6 @@
/area/hallway/primary/thirddeck/central)
"dKR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -103504,8 +100840,6 @@
"dKU" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -103529,8 +100863,6 @@
"dKY" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -103722,8 +101054,6 @@
/area/crew_quarters/heads/sc/restroom)
"dLs" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -103769,8 +101099,6 @@
/area/crew_quarters/heads/sc/chief/quarters)
"dLv" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -103791,8 +101119,6 @@
/area/crew_quarters/heads/sc/chief/quarters)
"dLx" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -103842,8 +101168,6 @@
/area/hallway/primary/thirddeck/central)
"dLC" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -103864,8 +101188,6 @@
/area/crew_quarters/heads/sc/hos/quarters)
"dLE" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -103894,8 +101216,6 @@
/area/crew_quarters/heads/sc/bs)
"dLH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -104028,8 +101348,6 @@
/area/hallway/primary/thirddeck/port)
"dLT" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -104110,8 +101428,6 @@
"dMb" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -104140,8 +101456,6 @@
/area/crew_quarters/heads/sc/chief/quarters)
"dMd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -104251,8 +101565,6 @@
"dMn" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -104295,8 +101607,6 @@
"dMq" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -104328,8 +101638,6 @@
/area/hallway/primary/thirddeck/starboard)
"dMu" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -104360,8 +101668,6 @@
"dMy" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -104432,13 +101738,9 @@
/area/crew_quarters/heads/sc/chief/quarters)
"dMI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -104448,16 +101750,12 @@
"dMJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/thirddeck/central)
"dMK" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -104475,8 +101773,6 @@
/area/hallway/primary/thirddeck/central)
"dML" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -104493,8 +101789,6 @@
/area/hallway/primary/thirddeck/central)
"dMM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -104507,16 +101801,12 @@
/area/hallway/primary/thirddeck/central)
"dMN" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/thirddeck/central)
"dMO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -104529,8 +101819,6 @@
/area/hallway/primary/thirddeck/central)
"dMP" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -104547,8 +101835,6 @@
/area/hallway/primary/thirddeck/central)
"dMQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor/corner{
@@ -104564,8 +101850,6 @@
/area/hallway/primary/thirddeck/central)
"dMR" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -104623,8 +101907,6 @@
"dNa" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -104636,8 +101918,6 @@
/area/maintenance/thirddeck/aftstarboard)
"dNb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -104650,8 +101930,6 @@
/area/maintenance/thirddeck/aftport)
"dNd" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -104756,8 +102034,6 @@
/area/maintenance/thirddeck/aftstarboard)
"dNq" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -104767,8 +102043,6 @@
/area/maintenance/thirddeck/aftstarboard)
"dNr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -104834,8 +102108,6 @@
},
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -104976,8 +102248,6 @@
/area/maintenance/thirddeck/aftstarboard)
"dNS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -105044,8 +102314,6 @@
"dOb" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -105205,8 +102473,6 @@
/area/maintenance/thirddeck/forestarboard)
"dOr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -105306,13 +102572,9 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -105329,8 +102591,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -105351,13 +102611,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -105541,8 +102797,6 @@
/area/maintenance/thirddeck/aftstarboard)
"dOW" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -105575,16 +102829,12 @@
/area/rnd/xenobiology/xenoflora)
"dPa" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"dPb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -105594,8 +102844,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -105605,13 +102853,9 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -105623,8 +102867,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/carpet,
@@ -105632,8 +102874,6 @@
"dPf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/camera/network/command{
@@ -105644,8 +102884,6 @@
/area/bridge/meeting_room)
"dPg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -105813,8 +103051,6 @@
"dPy" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -105855,13 +103091,9 @@
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/door/blast/regular{
@@ -105987,13 +103219,9 @@
/area/solar/aftportsolar)
"dPO" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -106037,8 +103265,6 @@
/area/bridge/meeting_room)
"dPU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -106066,8 +103292,6 @@
/area/bridge/meeting_room)
"dPZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -106151,8 +103375,6 @@
"dQf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -106253,8 +103475,6 @@
/area/crew_quarters/heads/sc/sd)
"dQq" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -106319,13 +103539,9 @@
/area/solar/aftstarboardsolar)
"dQw" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/catwalk,
@@ -106346,18 +103562,12 @@
/area/solar/aftstarboardsolar)
"dQy" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -106384,8 +103594,6 @@
"dQC" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -106401,13 +103609,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -106418,8 +103622,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -106429,13 +103631,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -106445,8 +103643,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -106457,8 +103653,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -106468,18 +103662,12 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -106490,8 +103678,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -106500,8 +103686,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -106536,8 +103720,6 @@
"dQN" = (
/obj/structure/table/wooden_reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/paper_bin{
@@ -106582,18 +103764,12 @@
/area/maintenance/thirddeck/aftstarboard)
"dQS" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -106670,8 +103846,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -106687,8 +103861,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -106735,8 +103907,6 @@
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/landmark{
@@ -106823,13 +103993,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -106839,8 +104005,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/requests_console{
@@ -106862,8 +104026,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/command{
@@ -106880,8 +104042,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
@@ -106891,8 +104051,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
@@ -106902,13 +104060,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/wood,
@@ -106982,8 +104136,6 @@
/area/bridge/meeting_room)
"dRD" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -107021,8 +104173,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -107032,8 +104182,6 @@
/area/bridge)
"dRJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -107133,8 +104281,6 @@
"dRX" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/landmark/start{
@@ -107179,8 +104325,6 @@
"dSb" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/folder/red,
@@ -107233,8 +104377,6 @@
"dSf" = (
/obj/structure/bed/chair,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -107293,8 +104435,6 @@
"dSj" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/folder/white,
@@ -107339,8 +104479,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/carpet,
@@ -107379,8 +104517,6 @@
/area/maintenance/solars/aftstarboardsolar)
"dSt" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/airless,
@@ -107520,8 +104656,6 @@
pixel_y = 7
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/pen/blue{
@@ -107642,8 +104776,6 @@
"dSQ" = (
/obj/structure/table/reinforced,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/paper_bin,
@@ -107769,8 +104901,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light,
@@ -107906,8 +105036,6 @@
/area/maintenance/solars/aftstarboardsolar)
"dTn" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/airless,
@@ -107922,34 +105050,24 @@
/area/solar/aftportsolar)
"dTp" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
/area/solar/aftportsolar)
"dTq" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
/area/solar/aftportsolar)
"dTr" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -107957,8 +105075,6 @@
/area/solar/aftportsolar)
"dTs" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/access_button{
@@ -107976,8 +105092,6 @@
/area/solar/aftportsolar)
"dTt" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -107992,8 +105106,6 @@
/area/maintenance/solars/aftportsolar)
"dTu" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
@@ -108023,8 +105135,6 @@
/area/maintenance/solars/aftportsolar)
"dTv" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/cee{
@@ -108045,8 +105155,6 @@
dir = 5
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -108064,13 +105172,9 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/access_button{
@@ -108090,8 +105194,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -108501,8 +105603,6 @@
dir = 1
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -108512,13 +105612,9 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/meter,
@@ -108539,8 +105635,6 @@
dir = 9
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -108560,8 +105654,6 @@
id_tag = "aft_starboard_solar_pump"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -108579,8 +105671,6 @@
id_tag = "aft_starboard_solar_pump"
},
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
@@ -108605,8 +105695,6 @@
/area/maintenance/solars/aftstarboardsolar)
"dUe" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
@@ -108621,8 +105709,6 @@
/area/maintenance/solars/aftstarboardsolar)
"dUf" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/access_button{
@@ -108640,8 +105726,6 @@
/area/solar/aftstarboardsolar)
"dUg" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -108649,26 +105733,18 @@
/area/solar/aftstarboardsolar)
"dUh" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/airless,
/area/solar/aftstarboardsolar)
"dUi" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/airless,
@@ -108809,18 +105885,12 @@
/area/bridge)
"dUA" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -108901,18 +105971,12 @@
/area/maintenance/thirddeck/aftstarboard)
"dUK" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -108920,13 +105984,9 @@
/area/solar/aftstarboardsolar)
"dUL" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/catwalk,
@@ -108934,13 +105994,9 @@
/area/solar/aftportsolar)
"dUM" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
@@ -109037,8 +106093,6 @@
"dUU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -109236,8 +106290,6 @@
/area/hallway/secondary/entry/D3)
"dVs" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -109347,8 +106399,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -109407,8 +106457,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -109505,8 +106553,6 @@
/area/rnd/xenobiology/xenoflora)
"dVY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -109664,13 +106710,9 @@
/area/rnd/xenobiology/xenoflora)
"dWq" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/hydro,
@@ -109834,8 +106876,6 @@
"dWL" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_research{
@@ -110061,8 +107101,6 @@
/area/rnd/research/firstdeck/hallway)
"dXh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -110213,8 +107251,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite,
@@ -110250,8 +107286,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite,
@@ -110260,8 +107294,6 @@
/area/rnd/research/firstdeck/hallway)
"dXy" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -110277,8 +107309,6 @@
/area/rnd/research/firstdeck/hallway)
"dXz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -110288,8 +107318,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite,
@@ -110298,13 +107326,9 @@
/area/rnd/research/firstdeck/hallway)
"dXA" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction,
@@ -110319,8 +107343,6 @@
"dXB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -110332,8 +107354,6 @@
/area/rnd/research/firstdeck/hallway)
"dXC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -110345,8 +107365,6 @@
/area/rnd/research/firstdeck/hallway)
"dXD" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -110362,8 +107380,6 @@
/area/rnd/research/firstdeck/hallway)
"dXF" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -110500,8 +107516,6 @@
/area/rnd/research/firstdeck/hallway)
"dXY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -110516,8 +107530,6 @@
/area/rnd/research/firstdeck/hallway)
"dXZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -110581,8 +107593,6 @@
/area/hallway/secondary/escape/firstdeck/ep_starboard1)
"dYh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/blast/regular{
@@ -110664,8 +107674,6 @@
/area/maintenance/firstdeck/centralstarboard)
"dYq" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -110700,8 +107708,6 @@
/area/rnd/research/firstdeck/hallway)
"dYt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -110756,13 +107762,9 @@
"dYw" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor/northleft{
@@ -110820,13 +107822,9 @@
"dYA" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor/northleft{
@@ -110927,8 +107925,6 @@
/area/rnd/research/firstdeck/hallway)
"dYK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -111082,8 +108078,6 @@
/area/rnd/research/firstdeck/hallway)
"dYY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -111131,8 +108125,6 @@
/area/rnd/xenobiology)
"dZd" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -111140,8 +108132,6 @@
"dZe" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
@@ -111150,21 +108140,15 @@
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology)
"dZg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -111172,8 +108156,6 @@
"dZh" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -111191,8 +108173,6 @@
/area/rnd/xenobiology)
"dZj" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -111257,8 +108237,6 @@
/area/rnd/research/firstdeck/hallway)
"dZp" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -111271,13 +108249,9 @@
/area/rnd/research/firstdeck/hallway)
"dZq" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -111306,13 +108280,9 @@
opacity = 0
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
@@ -111367,8 +108337,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/westleft{
@@ -111379,13 +108347,9 @@
/area/rnd/xenobiology)
"dZz" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -111394,13 +108358,9 @@
"dZA" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor/eastright{
@@ -111434,8 +108394,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning,
@@ -111499,8 +108457,6 @@
/area/rnd/xenobiology)
"dZK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -111532,8 +108488,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/access_button{
@@ -111696,8 +108650,6 @@
/obj/machinery/hologram/holopad,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -111743,8 +108695,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/embedded_controller/radio/airlock/access_controller{
@@ -111768,8 +108718,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -111809,8 +108757,6 @@
/area/rnd/xenobiology)
"eag" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -111869,8 +108815,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -111884,8 +108828,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
@@ -111901,13 +108843,9 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -111937,8 +108875,6 @@
req_access = list(55)
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -111951,8 +108887,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -111965,8 +108899,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -112006,21 +108938,15 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/xenobiology)
"eau" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -112032,13 +108958,9 @@
req_access = list(47)
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/door/blast/regular{
@@ -112104,26 +109026,18 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology)
"eaC" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -112133,8 +109047,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -112154,8 +109066,6 @@
/area/rnd/xenobiology)
"eaF" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -112268,8 +109178,6 @@
/area/rnd/xenobiology)
"eaP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/window/brigdoor/northright{
@@ -112385,13 +109293,9 @@
"eaX" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/door/window/brigdoor/southright{
@@ -112446,13 +109350,9 @@
"eba" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/door/window/brigdoor/southright{
@@ -112552,8 +109452,6 @@
"ebm" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -112568,8 +109466,6 @@
req_one_access = list()
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -112645,8 +109541,6 @@
pixel_y = -22
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/item/clamp,
@@ -112703,8 +109597,6 @@
/area/maintenance/substation/research)
"eby" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -112849,8 +109741,6 @@
dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -112989,8 +109879,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -113003,8 +109891,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -113017,8 +109903,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/junction,
@@ -113036,8 +109920,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -113059,8 +109941,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -113218,14 +110098,10 @@
/area/maintenance/cargo)
"ecm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -113811,8 +110687,6 @@
/area/maintenance/bar)
"edz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -113944,8 +110818,6 @@
/area/maintenance/substation/command)
"edJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -113971,13 +110843,9 @@
/area/hallway/primary/thirddeck/port)
"edL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -113988,8 +110856,6 @@
/area/hallway/primary/thirddeck/port)
"edM" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -114021,14 +110887,10 @@
/area/engineering/foyer)
"edQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -114041,8 +110903,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm
index 53dec7725d..26b08ebecd 100644
--- a/maps/southern_cross/southern_cross-3.dmm
+++ b/maps/southern_cross/southern_cross-3.dmm
@@ -118,8 +118,6 @@
"av" = (
/obj/effect/overlay/snow/floor,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -400,8 +398,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -494,8 +490,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -512,8 +506,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -526,8 +518,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -540,8 +530,6 @@
dir = 1
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -776,8 +764,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -981,8 +967,6 @@
dir = 8
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -1425,8 +1409,6 @@
/area/surface/outpost/mining_main/emergencystorage)
"dy" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
@@ -1674,8 +1656,6 @@
/area/surface/outpost/mining_main/emergencystorage)
"dZ" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
@@ -1706,13 +1686,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -1839,8 +1815,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -1858,8 +1832,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_security{
@@ -1873,8 +1845,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -1893,8 +1863,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -1909,13 +1877,9 @@
dir = 1
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -1926,13 +1890,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
@@ -1950,8 +1910,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_medical{
@@ -1967,8 +1925,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -2054,8 +2010,6 @@
/area/surface/outpost/mining_main)
"eD" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -2077,8 +2031,6 @@
/area/surface/outpost/mining_main)
"eG" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2190,8 +2142,6 @@
/area/surface/outpost/main/security)
"eT" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloor/corner,
@@ -2213,8 +2163,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -2249,8 +2197,6 @@
"eZ" = (
/obj/structure/closet/l3closet/scientist,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/borderfloorwhite/corner{
@@ -2402,24 +2348,18 @@
/area/surface/outpost/mining_main)
"fl" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
/area/surface/outpost/mining_main)
"fm" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/surface/outpost/mining_main)
"fn" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
@@ -2428,8 +2368,6 @@
/area/surface/outpost/mining_main)
"fo" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -2439,21 +2377,15 @@
dir = 8
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
/area/surface/outpost/mining_main)
"fp" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2471,8 +2403,6 @@
"fq" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2486,8 +2416,6 @@
/area/surface/outpost/mining_main/refinery)
"fr" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2505,8 +2433,6 @@
/area/surface/outpost/mining_main/refinery)
"fs" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2521,8 +2447,6 @@
/area/surface/outpost/mining_main/refinery)
"ft" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2536,8 +2460,6 @@
/area/surface/outpost/mining_main/refinery)
"fu" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/camera/network/mining{
@@ -2631,8 +2553,6 @@
name = "Gateway Access"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
@@ -2851,8 +2771,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -2937,8 +2855,6 @@
"gl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -3106,8 +3022,6 @@
/area/surface/outpost/main)
"gz" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -3225,8 +3139,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -3403,8 +3315,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -3504,29 +3414,21 @@
/area/surface/outpost/main/first_aid)
"hs" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
/area/surface/outpost/mining_main/gen_room)
"ht" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
/area/surface/outpost/mining_main/gen_room)
"hu" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -3566,8 +3468,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -3618,8 +3518,6 @@
/area/surface/outpost/mining_main/gen_room)
"hI" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -3635,8 +3533,6 @@
/area/surface/outpost/mining_main/gen_room)
"hK" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -3661,8 +3557,6 @@
/area/surface/outpost/mining_main/gen_room)
"hN" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -3837,8 +3731,6 @@
/area/surface/outpost/mining_main/gen_room)
"im" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/pipedispenser,
@@ -3846,13 +3738,9 @@
/area/surface/outpost/mining_main/gen_room)
"in" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/plating,
@@ -3863,8 +3751,6 @@
dir = 5
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -3874,8 +3760,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3942,8 +3826,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/techmaint,
@@ -4005,8 +3887,6 @@
dir = 8
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -4179,8 +4059,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
@@ -4217,8 +4095,6 @@
dir = 6
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/hologram/holopad,
@@ -4368,13 +4244,9 @@
/area/surface/outpost/main/teleporter)
"jn" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4383,8 +4255,6 @@
/area/surface/outpost/main/gen_room)
"jo" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/alarm{
@@ -4402,8 +4272,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/highsecurity{
@@ -4502,8 +4370,6 @@
/area/surface/outpost/main/gen_room)
"jC" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -4517,8 +4383,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light,
@@ -4535,8 +4399,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -4608,8 +4470,6 @@
"jP" = (
/obj/effect/overlay/snow/floor,
/obj/structure/cable/heavyduty{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/heavyduty{
@@ -4717,13 +4577,9 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -4740,8 +4596,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -4754,8 +4608,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -4774,8 +4626,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -4784,13 +4634,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -4803,8 +4649,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
@@ -4816,18 +4660,12 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -4837,8 +4675,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -4852,8 +4688,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock,
@@ -4865,8 +4699,6 @@
icon_state = "warning"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -4900,8 +4732,6 @@
/area/surface/outpost/main/gen_room)
"kl" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -4966,8 +4796,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -5016,8 +4844,6 @@
/area/surface/outpost/main/gen_room)
"kw" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/table/steel,
@@ -5028,8 +4854,6 @@
/area/surface/outpost/main/gen_room)
"kx" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/firealarm{
@@ -5060,8 +4884,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -5143,8 +4965,6 @@
/area/surface/outpost/main)
"kP" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -5153,13 +4973,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -5280,8 +5096,6 @@
"lj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5300,8 +5114,6 @@
dir = 10
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/junction,
@@ -5473,8 +5285,6 @@
/area/surface/outpost/main/bar)
"lG" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
@@ -5572,8 +5382,6 @@
dir = 5
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -5724,8 +5532,6 @@
/area/surface/outpost/main/gen_room/smes)
"mj" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -5767,8 +5573,6 @@
/area/surface/outpost/main/bar)
"mo" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -5875,8 +5679,6 @@
dir = 6
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -5887,8 +5689,6 @@
pixel_y = 0
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -5993,13 +5793,9 @@
/area/surface/outpost/main/gen_room)
"mN" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/alarm{
@@ -6019,8 +5815,6 @@
/area/surface/outpost/main/bar)
"mQ" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -6107,8 +5901,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -6158,8 +5950,6 @@
/area/surface/outpost/main/construction_area)
"ni" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6193,8 +5983,6 @@
"nl" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -6224,8 +6012,6 @@
/area/surface/outpost/main/bar)
"np" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -6319,8 +6105,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -6371,8 +6155,6 @@
/area/surface/outpost/main/construction_area)
"nJ" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6393,16 +6175,12 @@
/area/surface/outpost/main/dorms)
"nN" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/surface/outpost/main/dorms)
"nO" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6449,8 +6227,6 @@
/area/surface/outpost/main/gym)
"nT" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -6465,8 +6241,6 @@
/area/surface/outpost/main/gym)
"nU" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera/network/main_outpost{
@@ -6548,8 +6322,6 @@
"oe" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6571,8 +6343,6 @@
/area/surface/outpost/main/dorms)
"oh" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
@@ -6587,8 +6357,6 @@
name = "Bar"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6669,8 +6437,6 @@
name = "Gym"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -6770,8 +6536,6 @@
/area/surface/outpost/main/dorms)
"oC" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6830,8 +6594,6 @@
/area/surface/outpost/main/dorms)
"oG" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -6899,8 +6661,6 @@
/area/surface/outpost/main/dorms)
"oL" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -7141,8 +6901,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -7208,8 +6966,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -7319,8 +7075,6 @@
/area/surface/outpost/main/dorms)
"pt" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/hologram/holopad,
@@ -7335,8 +7089,6 @@
/area/surface/outpost/main/dorms)
"pu" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -7347,8 +7099,6 @@
/area/surface/outpost/main/dorms)
"pv" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7361,13 +7111,9 @@
/area/surface/outpost/main/dorms)
"pw" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7380,13 +7126,9 @@
/area/surface/outpost/main/dorms)
"px" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7400,8 +7142,6 @@
"py" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7414,8 +7154,6 @@
/area/surface/outpost/main/dorms)
"pz" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -7428,13 +7166,9 @@
/area/surface/outpost/main/dorms)
"pA" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
@@ -7445,8 +7179,6 @@
/area/surface/outpost/main/dorms)
"pB" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7457,8 +7189,6 @@
/area/surface/outpost/main/dorms)
"pC" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7476,8 +7206,6 @@
"pD" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7491,8 +7219,6 @@
/area/surface/outpost/main/corridor)
"pE" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7598,8 +7324,6 @@
/area/surface/outpost/main/corridor)
"pO" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -7608,8 +7332,6 @@
/area/surface/outpost/main)
"pP" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7622,8 +7344,6 @@
/area/surface/outpost/main)
"pQ" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -7640,13 +7360,9 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/hologram/holopad,
@@ -8004,8 +7720,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -8246,8 +7960,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/camera/network/main_outpost{
@@ -8276,8 +7988,6 @@
/area/surface/outpost/main/restroom)
"rh" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -8554,8 +8264,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -8571,8 +8279,6 @@
"rH" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock{
@@ -8817,8 +8523,6 @@
/area/surface/outpost/main/pool)
"sd" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -8828,8 +8532,6 @@
/area/surface/outpost/main/pool)
"se" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -8847,13 +8549,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/camera/network/main_outpost{
@@ -8866,8 +8564,6 @@
/area/surface/outpost/main/pool)
"sg" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -8884,16 +8580,12 @@
/area/surface/outpost/main/pool)
"sh" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/freezer,
/area/surface/outpost/main/pool)
"si" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -8903,8 +8595,6 @@
/area/surface/outpost/main/pool)
"sj" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/spot{
@@ -8914,8 +8604,6 @@
/area/surface/outpost/main/pool)
"sk" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -9786,8 +9474,6 @@
"uw" = (
/obj/effect/overlay/snow/floor,
/obj/structure/cable/heavyduty{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -10020,8 +9706,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/freezer,
@@ -10179,8 +9863,6 @@
/area/surface/outpost/research/xenoresearch/emergencystorage)
"vs" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
@@ -10209,8 +9891,6 @@
/obj/item/cell/high,
/obj/item/weldpack,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
@@ -10265,8 +9945,6 @@
/area/surface/outpost/research/xenoresearch/restroom)
"vz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10379,8 +10057,6 @@
"vO" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock{
@@ -10391,8 +10067,6 @@
"vP" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10407,8 +10081,6 @@
"vQ" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10539,8 +10211,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -10591,8 +10261,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning{
@@ -10658,8 +10326,6 @@
/area/surface/outpost/research/xenoresearch)
"wp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -10812,13 +10478,9 @@
/area/surface/outpost/research/xenoresearch)
"wG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
@@ -10826,16 +10488,12 @@
"wH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
/area/surface/outpost/research/xenoresearch)
"wI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/alarm{
@@ -10847,8 +10505,6 @@
"wJ" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -10858,18 +10514,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/junction{
@@ -10887,8 +10537,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/item/radio/intercom{
@@ -10902,8 +10550,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -10914,13 +10560,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -10930,29 +10572,21 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
/area/surface/outpost/research/xenoresearch)
"wP" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10963,8 +10597,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -10974,8 +10606,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -10985,16 +10615,12 @@
/area/surface/outpost/research/xenoresearch)
"wS" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11006,8 +10632,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -11020,8 +10644,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -11031,8 +10653,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11043,8 +10663,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
@@ -11057,8 +10675,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11093,8 +10709,6 @@
"xc" = (
/obj/machinery/light,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -11111,8 +10725,6 @@
/area/surface/outpost/research/xenoresearch/xenobiology)
"xf" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11172,8 +10784,6 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_medical,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11209,8 +10819,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_research{
@@ -11338,8 +10946,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -11435,16 +11041,12 @@
/area/surface/outpost/research/xenoresearch/xenobiology)
"xG" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
/area/surface/outpost/research/xenoresearch/xenobiology)
"xH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11505,8 +11107,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -11568,8 +11168,6 @@
"xW" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -11803,8 +11401,6 @@
/area/surface/outpost/research/xenoresearch/xenobiology)
"yt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12001,8 +11597,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
diff --git a/maps/southern_cross/southern_cross-4.dmm b/maps/southern_cross/southern_cross-4.dmm
index 534eafc4a4..8d97902abf 100644
--- a/maps/southern_cross/southern_cross-4.dmm
+++ b/maps/southern_cross/southern_cross-4.dmm
@@ -549,8 +549,6 @@
dir = 6
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
@@ -566,8 +564,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -584,8 +580,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/research{
@@ -600,8 +594,6 @@
icon_state = "pipe-c"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -614,8 +606,6 @@
/area/surface/outpost/research/xenoarcheology/longtermstorage)
"bx" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -628,8 +618,6 @@
/area/surface/outpost/research/xenoarcheology/longtermstorage)
"by" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -700,8 +688,6 @@
dir = 8
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -715,8 +701,6 @@
"bG" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -739,8 +723,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning{
@@ -757,8 +739,6 @@
dir = 10
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
@@ -783,8 +763,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning{
@@ -955,8 +933,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
@@ -1032,8 +1008,6 @@
"cj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -1057,8 +1031,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/camera/network/research_outpost{
@@ -1077,8 +1049,6 @@
"cm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning/corner{
@@ -1118,8 +1088,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/industrial/warning/corner,
@@ -1129,8 +1097,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -1274,8 +1240,6 @@
/area/surface/outpost/research/xenoarcheology)
"cK" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -1285,16 +1249,12 @@
dir = 8
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
/area/surface/outpost/research/xenoarcheology)
"cL" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1311,8 +1271,6 @@
"cM" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1330,16 +1288,12 @@
"cN" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -1351,8 +1305,6 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -1360,8 +1312,6 @@
pixel_y = 0
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled,
@@ -1369,8 +1319,6 @@
"cP" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1381,8 +1329,6 @@
"cQ" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1405,13 +1351,9 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -1422,8 +1364,6 @@
},
/obj/effect/floor_decal/industrial/warning/full,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
@@ -1534,8 +1474,6 @@
"dh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -1581,8 +1519,6 @@
dir = 5
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -1669,8 +1605,6 @@
dir = 5
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
@@ -1685,8 +1619,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -1704,8 +1636,6 @@
req_one_access = list()
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -1716,8 +1646,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/neutral,
@@ -1727,16 +1655,12 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/neutral,
@@ -1774,8 +1698,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_research{
@@ -1820,8 +1742,6 @@
},
/obj/effect/floor_decal/industrial/warning/full,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
@@ -1913,8 +1833,6 @@
"dP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/bed/chair/office/light{
@@ -1947,8 +1865,6 @@
/area/surface/outpost/research/xenoarcheology)
"dS" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2016,13 +1932,9 @@
icon_state = "warningcorner"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -2030,8 +1942,6 @@
"dZ" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -2040,8 +1950,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -2111,8 +2019,6 @@
"el" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2186,8 +2092,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -2271,8 +2175,6 @@
"eC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2351,8 +2253,6 @@
icon_state = "warningcorner"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -2473,14 +2373,10 @@
/area/surface/outpost/research/xenoarcheology)
"eW" = (
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -2490,8 +2386,6 @@
/area/surface/outpost/research/xenoarcheology)
"eX" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2503,8 +2397,6 @@
"eY" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2517,8 +2409,6 @@
/area/surface/outpost/research/xenoarcheology)
"eZ" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -2529,13 +2419,9 @@
/area/surface/outpost/research/xenoarcheology)
"fa" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -2606,8 +2492,6 @@
"fh" = (
/obj/effect/floor_decal/industrial/warning/full,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/binary/pump{
@@ -2672,8 +2556,6 @@
"fo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning,
@@ -2701,8 +2583,6 @@
/area/surface/outpost/research/xenoarcheology)
"fs" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2739,8 +2619,6 @@
icon_state = "warning"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
@@ -2755,8 +2633,6 @@
icon_state = "tube1"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -2765,8 +2641,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/effect/wingrille_spawn/reinforced,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -2818,8 +2692,6 @@
/obj/machinery/door/firedoor/border_only,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -2845,13 +2717,9 @@
/area/surface/outpost/research/xenoarcheology)
"fJ" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -2864,8 +2732,6 @@
/area/surface/outpost/research/xenoarcheology)
"fK" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -2887,8 +2753,6 @@
dir = 4
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -2905,8 +2769,6 @@
dir = 1
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -2926,8 +2788,6 @@
dir = 10
},
/obj/structure/cable/blue{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
@@ -3022,8 +2882,6 @@
/area/surface/outpost/research/xenoarcheology/smes)
"fX" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/table/steel,
@@ -3038,8 +2896,6 @@
"fY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/table/steel,
@@ -3051,8 +2907,6 @@
/area/surface/outpost/research/xenoarcheology/smes)
"fZ" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -3070,13 +2924,9 @@
target_pressure = 200
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning{
@@ -3122,8 +2972,6 @@
},
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3150,8 +2998,6 @@
/area/surface/outpost/research/xenoarcheology/anomaly)
"gg" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3350,8 +3196,6 @@
/area/surface/outpost/research/xenoarcheology/restroom)
"gC" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3377,8 +3221,6 @@
req_one_access = list(65)
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3515,15 +3357,11 @@
/area/surface/outpost/research/xenoarcheology/analysis)
"gX" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/white,
@@ -3677,16 +3515,12 @@
dir = 5
},
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
/area/surface/outpost/research/xenoarcheology/analysis)
"hq" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -3697,8 +3531,6 @@
/area/surface/outpost/research/xenoarcheology/analysis)
"hr" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3712,8 +3544,6 @@
/area/surface/outpost/research/xenoarcheology/analysis)
"hs" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3723,8 +3553,6 @@
/area/surface/outpost/research/xenoarcheology/analysis)
"ht" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3734,8 +3562,6 @@
/area/surface/outpost/research/xenoarcheology/analysis)
"hu" = (
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
@@ -3746,16 +3572,12 @@
name = "Emergency Storage"
},
/obj/structure/cable/blue{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/surface/outpost/research/xenoarcheology/emergencystorage)
"hw" = (
/obj/structure/cable/blue{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index ff5412d2c7..da5c62361b 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -219,7 +219,6 @@
id_tag = "vonbraun_pd"
},
/obj/structure/cable/yellow{
- dir = 4;
icon_state = "0-4"
},
/turf/simulated/floor/reinforced/airless,
@@ -472,7 +471,6 @@
id_tag = "vonbraun_pd"
},
/obj/structure/cable/yellow{
- dir = 4;
icon_state = "0-4"
},
/turf/simulated/floor/reinforced/airless,
@@ -845,7 +843,6 @@
id_tag = "vonbraun_pd"
},
/obj/structure/cable/yellow{
- dir = 4;
icon_state = "0-4"
},
/turf/simulated/floor/reinforced/airless,
@@ -6347,7 +6344,6 @@
id_tag = "vonbraun_pd"
},
/obj/structure/cable/yellow{
- dir = 4;
icon_state = "0-4"
},
/turf/simulated/floor/reinforced/airless,
@@ -8837,7 +8833,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
- dir = 4;
icon_state = "0-4"
},
/turf/simulated/floor/tiled/techmaint,
diff --git a/maps/submaps/admin_use_vr/event_autonomous_drone.dmm b/maps/submaps/admin_use_vr/event_autonomous_drone.dmm
index 79a7a83b61..1426b8de7d 100644
--- a/maps/submaps/admin_use_vr/event_autonomous_drone.dmm
+++ b/maps/submaps/admin_use_vr/event_autonomous_drone.dmm
@@ -38,7 +38,6 @@
/area/submap/event_autonomous_drone/cargo)
"eW" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/light_switch{
diff --git a/maps/submaps/depreciated_vr/talon1.dmm b/maps/submaps/depreciated_vr/talon1.dmm
index e43a335656..002f753d2b 100644
--- a/maps/submaps/depreciated_vr/talon1.dmm
+++ b/maps/submaps/depreciated_vr/talon1.dmm
@@ -24,8 +24,6 @@
},
/obj/structure/lattice,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/space,
@@ -68,16 +66,12 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/steel,
/area/space)
"ak" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -101,16 +95,12 @@
},
/obj/machinery/door/firedoor/glass/talon,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
/area/space)
"an" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -120,8 +110,6 @@
/area/space)
"ao" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/white/golden,
@@ -156,8 +144,6 @@
/area/space)
"as" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -169,8 +155,6 @@
pixel_y = -26
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/white/golden,
@@ -222,8 +206,6 @@
"ay" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -234,8 +216,6 @@
"az" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -246,13 +226,9 @@
"aA" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/small,
@@ -264,8 +240,6 @@
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/light/small,
@@ -387,7 +361,6 @@
"aU" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under/airless,
@@ -501,8 +474,6 @@
"bn" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under/airless,
@@ -575,8 +546,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/eastleft{
@@ -617,8 +586,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/eastleft{
@@ -719,8 +686,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -816,8 +781,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -836,8 +799,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -895,8 +856,6 @@
/area/space)
"cb" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -908,8 +867,6 @@
/area/space)
"cc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -943,8 +900,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/multi_tile/glass{
@@ -961,8 +916,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/sign/securearea{
@@ -1004,8 +957,6 @@
/area/space)
"ck" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/engi{
@@ -1020,8 +971,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/engi{
@@ -1036,8 +985,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -1085,8 +1032,6 @@
"cu" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/alarm/talon{
@@ -1106,8 +1051,6 @@
"cx" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/alarm/talon{
@@ -1135,8 +1078,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass,
@@ -1227,8 +1168,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -1274,8 +1213,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/catwalk_plated,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating/eris/under,
@@ -1435,8 +1372,6 @@
"dg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/vending/medical_talon{
@@ -1470,7 +1405,6 @@
/area/space)
"dE" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
@@ -1520,8 +1454,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
@@ -1567,16 +1499,12 @@
/area/space)
"eq" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/green{
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/catwalk_plated/dark,
@@ -1590,8 +1518,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -1651,8 +1577,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -1676,8 +1600,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/sign/department/medbay{
@@ -1762,8 +1684,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -1980,8 +1900,6 @@
/area/space)
"kz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/eris/dark/cyancorner,
@@ -1994,8 +1912,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
@@ -2015,8 +1931,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -2130,15 +2044,12 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
/area/space)
"mj" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2165,13 +2076,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/junction{
@@ -2262,8 +2169,6 @@
/area/space)
"oz" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -2272,8 +2177,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -2318,8 +2221,6 @@
/area/space)
"pp" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/bed/chair/bay/chair{
@@ -2332,8 +2233,6 @@
/area/space)
"pr" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -2352,8 +2251,6 @@
"pw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -2447,8 +2344,6 @@
/area/space)
"qz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/sign/warning/nosmoking_1{
@@ -2490,8 +2385,6 @@
/area/space)
"rF" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -2522,8 +2415,6 @@
/area/space)
"sc" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -2535,8 +2426,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -2578,8 +2467,6 @@
/area/space)
"sY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark/brown_platform,
@@ -2590,8 +2477,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -2601,8 +2486,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass{
@@ -2627,8 +2510,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/catwalk_plated,
@@ -2648,8 +2529,6 @@
/area/space)
"tI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
@@ -2688,8 +2567,6 @@
/area/space)
"ur" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance/common,
@@ -2709,8 +2586,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -2747,13 +2622,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -2770,7 +2641,6 @@
"vi" = (
/obj/effect/map_helper/airlock/door/simple,
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_external{
@@ -2781,8 +2651,6 @@
"vK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -2867,8 +2735,6 @@
"xu" = (
/obj/effect/shuttle_landmark/shuttle_initializer/talonboat,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled/eris/white/gray_platform,
@@ -2884,8 +2750,6 @@
/area/space)
"xw" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2914,8 +2778,6 @@
/area/space)
"xK" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -2975,8 +2837,6 @@
/area/space)
"yo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3010,8 +2870,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -3100,13 +2958,9 @@
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/catwalk_plated/dark,
@@ -3142,8 +2996,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -3232,7 +3084,6 @@
/area/space)
"Bq" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -3298,8 +3149,6 @@
"CT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -3345,8 +3194,6 @@
"Dw" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating/eris/under,
@@ -3356,8 +3203,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -3377,13 +3222,9 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/junction{
@@ -3438,8 +3279,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -3489,8 +3328,6 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -3506,8 +3343,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -3535,8 +3370,6 @@
/area/space)
"FQ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/dark/cyancorner,
@@ -3552,15 +3385,12 @@
/area/space)
"Gd" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/space)
"Gh" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/sign/deck1{
@@ -3595,8 +3425,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -3619,8 +3447,6 @@
"GH" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
@@ -3634,15 +3460,12 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
/area/space)
"Ha" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -3672,8 +3495,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -3693,8 +3514,6 @@
"HQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3712,8 +3531,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3739,8 +3556,6 @@
icon_state = "2-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3773,8 +3588,6 @@
/area/space)
"II" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/bed/chair/office/light,
@@ -3834,8 +3647,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3854,7 +3665,6 @@
dir = 1
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -3876,8 +3686,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/effect/catwalk_plated,
@@ -3889,8 +3697,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3936,8 +3742,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3979,8 +3783,6 @@
/area/shuttle/talonboat)
"Km" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust/corner{
@@ -4010,8 +3812,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -4022,8 +3822,6 @@
/area/space)
"KI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/sign/deck1{
@@ -4040,8 +3838,6 @@
/area/space)
"KJ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -4074,8 +3870,6 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
@@ -4110,8 +3904,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4150,13 +3942,9 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4179,8 +3967,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4204,8 +3990,6 @@
"Mz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4231,8 +4015,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -4261,8 +4043,6 @@
"ML" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -4275,8 +4055,6 @@
dir = 6
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -4289,8 +4067,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -4307,8 +4083,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -4347,14 +4121,10 @@
/area/space)
"Ny" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -4410,8 +4180,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -4433,8 +4201,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4476,8 +4242,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
@@ -4513,8 +4277,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -4550,8 +4312,6 @@
pixel_y = -25
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/eris/dark/cyancorner,
@@ -4574,7 +4334,6 @@
/area/space)
"RV" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/dark/danger,
@@ -4656,8 +4415,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass{
@@ -4708,8 +4465,6 @@
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -4719,8 +4474,6 @@
/area/space)
"Tz" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -4733,8 +4486,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -4742,8 +4493,6 @@
"TC" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating/eris/under,
@@ -4763,8 +4512,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -4858,8 +4605,6 @@
/area/space)
"UI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust/corner{
@@ -4871,8 +4616,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -4933,8 +4676,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/white/gray_platform,
@@ -5009,8 +4750,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -5037,8 +4776,6 @@
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass/talon,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
@@ -5087,8 +4824,6 @@
dir = 10
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5184,8 +4919,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
@@ -5203,8 +4936,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -5255,8 +4986,6 @@
/area/space)
"YK" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -5286,8 +5015,6 @@
/area/space)
"Zg" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark/cyancorner,
@@ -5319,8 +5046,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5338,8 +5063,6 @@
pixel_y = -25
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/dark/cyancorner,
diff --git a/maps/submaps/depreciated_vr/talon2.dmm b/maps/submaps/depreciated_vr/talon2.dmm
index 1a8aefe8bd..5dcf85095a 100644
--- a/maps/submaps/depreciated_vr/talon2.dmm
+++ b/maps/submaps/depreciated_vr/talon2.dmm
@@ -42,8 +42,6 @@
/area/space)
"am" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm/talon{
@@ -78,8 +76,6 @@
/area/space)
"au" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera/network/talon,
@@ -87,8 +83,6 @@
/area/space)
"ay" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -110,8 +104,6 @@
/area/space)
"aB" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -147,8 +139,6 @@
"aI" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -181,8 +171,6 @@
/area/space)
"aN" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -327,8 +315,6 @@
/area/space)
"bd" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -380,8 +366,6 @@
/area/space)
"bi" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -404,8 +388,6 @@
/area/space)
"bk" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -425,8 +407,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -445,7 +425,6 @@
/area/space)
"bo" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -458,7 +437,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -623,8 +601,6 @@
/area/space)
"bG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -636,8 +612,6 @@
/area/space)
"bH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
@@ -667,8 +641,6 @@
/area/space)
"bL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -685,8 +657,6 @@
"bN" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/alarm/talon{
@@ -723,8 +693,6 @@
"bS" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating/eris/under,
@@ -786,8 +754,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -801,8 +767,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass,
@@ -833,8 +797,6 @@
"cj" = (
/obj/structure/lattice,
/obj/structure/cable/green{
- d1 = 32;
- d2 = 8;
icon_state = "32-8"
},
/turf/simulated/open,
@@ -848,8 +810,6 @@
"cp" = (
/obj/structure/lattice,
/obj/structure/cable/green{
- d1 = 32;
- d2 = 4;
icon_state = "32-4"
},
/turf/simulated/open,
@@ -857,8 +817,6 @@
"cq" = (
/obj/structure/lattice,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/open,
@@ -905,8 +863,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -988,8 +944,6 @@
/area/space)
"dZ" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -1048,7 +1002,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_external,
@@ -1105,8 +1058,6 @@
/area/space)
"fh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/common,
@@ -1166,8 +1117,6 @@
/area/space)
"fx" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -1175,8 +1124,6 @@
/area/space)
"fz" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -1211,8 +1158,6 @@
/area/space)
"fH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -1266,8 +1211,6 @@
/area/space)
"fU" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -1450,8 +1393,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -1521,8 +1462,6 @@
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark/violetcorener,
@@ -1557,8 +1496,6 @@
/area/space)
"jI" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/landmark/talon,
@@ -1607,8 +1544,6 @@
/area/space)
"kn" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -1620,8 +1555,6 @@
/area/space)
"kO" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance/common,
@@ -1630,8 +1563,6 @@
/area/space)
"kS" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -1642,8 +1573,6 @@
/area/space)
"la" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/light{
@@ -1654,8 +1583,6 @@
"lx" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
@@ -1691,8 +1618,6 @@
/area/space)
"lR" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass{
@@ -1706,14 +1631,10 @@
/area/space)
"mo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
@@ -1721,8 +1642,6 @@
/area/space)
"mr" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -1754,16 +1673,12 @@
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating/eris/under,
/area/space)
"mL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/catwalk,
@@ -1782,8 +1697,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -1813,8 +1726,6 @@
/area/space)
"ns" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/firealarm{
@@ -1849,8 +1760,6 @@
/area/space)
"nL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -1881,13 +1790,9 @@
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/hull/airless,
@@ -1922,8 +1827,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -1931,8 +1834,6 @@
/area/space)
"pY" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -1988,8 +1889,6 @@
/area/space)
"qW" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -2019,16 +1918,12 @@
/area/space)
"rA" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/heavyduty{
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/hull/airless,
@@ -2050,7 +1945,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
@@ -2066,7 +1960,6 @@
dir = 8
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/cafe,
@@ -2079,8 +1972,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -2142,16 +2033,12 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
/area/space)
"sX" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2223,8 +2110,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -2248,8 +2133,6 @@
/area/space)
"uL" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -2307,13 +2190,9 @@
/area/space)
"vO" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/heavyduty{
@@ -2323,8 +2202,6 @@
/area/space)
"vQ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2337,14 +2214,12 @@
/area/space)
"vW" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/cafe,
/area/space)
"wE" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust/corner{
@@ -2393,8 +2268,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -2405,8 +2278,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -2417,13 +2288,9 @@
icon_state = "1-2"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/hull/airless,
@@ -2459,13 +2326,9 @@
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/hull/airless,
@@ -2497,13 +2360,9 @@
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/hull/airless,
@@ -2535,13 +2394,9 @@
/area/space)
"Af" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -2576,8 +2431,6 @@
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -2608,8 +2461,6 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -2626,8 +2477,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance/common,
@@ -2642,8 +2491,6 @@
"Bv" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -2697,8 +2544,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -2720,8 +2565,6 @@
/area/space)
"CF" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -2731,13 +2574,9 @@
icon_state = "0-8"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/hull/airless,
@@ -2772,7 +2611,6 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
@@ -2782,14 +2620,10 @@
/area/space)
"Dk" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/media/jukebox,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/wood,
@@ -2845,13 +2679,9 @@
/area/space)
"Fc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -2869,8 +2699,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/catwalk,
@@ -2883,8 +2711,6 @@
/area/space)
"FF" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -2894,14 +2720,10 @@
/area/space)
"FG" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -2947,8 +2769,6 @@
/area/space)
"Gq" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2963,8 +2783,6 @@
/area/space)
"GX" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance/common,
@@ -2989,8 +2807,6 @@
/area/space)
"HH" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -3045,13 +2861,9 @@
icon_state = "1-2"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/hull/airless,
@@ -3072,8 +2884,6 @@
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -3090,8 +2900,6 @@
/area/space)
"IO" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3117,8 +2925,6 @@
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -3160,8 +2966,6 @@
dir = 5
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/railing,
@@ -3189,8 +2993,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -3207,7 +3009,6 @@
},
/obj/structure/table/marble,
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/cafe,
@@ -3254,8 +3055,6 @@
/area/space)
"LH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
@@ -3301,8 +3100,6 @@
dir = 8
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -3321,8 +3118,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -3331,8 +3126,6 @@
/area/space)
"Nb" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
@@ -3382,8 +3175,6 @@
/area/space)
"NT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -3404,8 +3195,6 @@
/area/space)
"NZ" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera/network/talon{
@@ -3415,16 +3204,12 @@
/area/space)
"Oc" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/hull/airless,
@@ -3446,20 +3231,15 @@
},
/obj/item/stool/baystool/padded,
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/cafe,
/area/space)
"OO" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable/heavyduty{
@@ -3566,8 +3346,6 @@
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass/talon,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating/eris/under,
@@ -3586,8 +3364,6 @@
/area/space)
"Rm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3633,8 +3409,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark/violetcorener,
@@ -3677,8 +3451,6 @@
/area/space)
"Tg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/camera/network/talon{
@@ -3688,8 +3460,6 @@
/area/space)
"Tn" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3717,8 +3487,6 @@
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -3733,13 +3501,9 @@
/area/space)
"TM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/steel,
@@ -3754,8 +3518,6 @@
"TY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
@@ -3775,8 +3537,6 @@
/area/space)
"Uj" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/industrial/warning/dust{
@@ -3803,13 +3563,9 @@
icon_state = "0-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/hull/airless,
@@ -3851,13 +3607,9 @@
icon_state = "4-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/hull/airless,
@@ -3873,8 +3625,6 @@
/area/space)
"Vg" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass,
@@ -3906,8 +3656,6 @@
/area/space)
"VH" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass,
@@ -3953,8 +3701,6 @@
/area/space)
"WO" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/hull/airless,
@@ -3973,8 +3719,6 @@
/area/space)
"Xa" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -3984,16 +3728,12 @@
/area/space)
"Xg" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/heavyduty{
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/hull/airless,
@@ -4018,8 +3758,6 @@
/area/space)
"Xs" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -4044,8 +3782,6 @@
icon_state = "1-2"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -4059,8 +3795,6 @@
/area/space)
"Yh" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/glass/talon,
@@ -4072,8 +3806,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
diff --git a/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm b/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm
index 56f8f811a1..d762f0b6fa 100644
--- a/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm
+++ b/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm
@@ -319,9 +319,6 @@
},
/turf/simulated/floor,
/area/engineering/engine_room)
-"aV" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/template_noop)
"aW" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -1588,7 +1585,7 @@ ac
ad
ac
ac
-ac
+ab
ac
ac
ac
@@ -2359,8 +2356,8 @@ af
av
av
av
-aV
-aV
+aa
+aa
av
bz
bz
diff --git a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
index 4404138b08..63b3a03d20 100644
--- a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
+++ b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
@@ -342,7 +342,6 @@
dir = 4
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/airless,
@@ -355,7 +354,6 @@
dir = 8
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -394,7 +392,6 @@
/area/submap/debrisfield/tinyshuttle/crew)
"aO" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -603,7 +600,6 @@
/area/submap/debrisfield/tinyshuttle/crew)
"bf" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/structure/cable/green{
@@ -620,7 +616,6 @@
/area/submap/debrisfield/tinyshuttle/crew)
"bg" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -940,7 +935,6 @@
/area/submap/debrisfield/tinyshuttle/hangar)
"bJ" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
diff --git a/maps/submaps/surface_submaps/mountains/Rockb1.dmm b/maps/submaps/surface_submaps/mountains/Rockb1.dmm
index 6401236c09..f5f8a953d1 100644
--- a/maps/submaps/surface_submaps/mountains/Rockb1.dmm
+++ b/maps/submaps/surface_submaps/mountains/Rockb1.dmm
@@ -117,16 +117,12 @@
/area/submap/Rockb1)
"A" = (
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/submap/Rockb1)
"B" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
@@ -136,8 +132,6 @@
dir = 1
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
diff --git a/maps/submaps/surface_submaps/plains/VRDen.dmm b/maps/submaps/surface_submaps/plains/VRDen.dmm
index 2b623697ff..75e3e12f61 100644
--- a/maps/submaps/surface_submaps/plains/VRDen.dmm
+++ b/maps/submaps/surface_submaps/plains/VRDen.dmm
@@ -31,8 +31,6 @@
"f" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/machinery/light{
@@ -67,8 +65,6 @@
"k" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled/virgo3b,
@@ -83,8 +79,6 @@
icon_state = "0-4"
},
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/tiled/virgo3b,
diff --git a/maps/submaps/surface_submaps/plains/dogbase.dmm b/maps/submaps/surface_submaps/plains/dogbase.dmm
index 89cec92c66..4c88d72639 100644
--- a/maps/submaps/surface_submaps/plains/dogbase.dmm
+++ b/maps/submaps/surface_submaps/plains/dogbase.dmm
@@ -75,8 +75,6 @@
/area/submap/DogBase)
"cS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/mob/living/simple_mob/mechanical/viscerator/mercenary,
@@ -395,8 +393,6 @@
/area/template_noop)
"xc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable{
@@ -611,13 +607,9 @@
/area/submap/DogBase)
"Kt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/light{
@@ -628,8 +620,6 @@
/area/submap/DogBase)
"Le" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/mob/living/simple_mob/mechanical/viscerator/mercenary,
diff --git a/maps/submaps/surface_submaps/wilderness/dogbase.dmm b/maps/submaps/surface_submaps/wilderness/dogbase.dmm
index 5d663cd592..f0bf9e2a2e 100644
--- a/maps/submaps/surface_submaps/wilderness/dogbase.dmm
+++ b/maps/submaps/surface_submaps/wilderness/dogbase.dmm
@@ -75,8 +75,6 @@
/area/submap/DogBase)
"cS" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/mob/living/simple_mob/mechanical/viscerator/mercenary,
@@ -399,8 +397,6 @@
/area/template_noop)
"xc" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/cable{
@@ -620,13 +616,9 @@
/area/submap/DogBase)
"Kt" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
/obj/machinery/light{
@@ -637,8 +629,6 @@
/area/submap/DogBase)
"Le" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
/mob/living/simple_mob/mechanical/viscerator/mercenary,
diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm
index febf7d5b36..fe14c89faa 100644
--- a/maps/tether/tether-02-surface2.dmm
+++ b/maps/tether/tether-02-surface2.dmm
@@ -14983,7 +14983,6 @@
/area/maintenance/commandmaint)
"azH" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15427,7 +15426,6 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -15661,7 +15659,6 @@
"aBo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -16004,7 +16001,6 @@
"aBW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -16020,7 +16016,6 @@
req_one_access = list(17)
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16459,7 +16454,6 @@
"aCL" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -17791,7 +17785,6 @@
"aFr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -18441,7 +18434,6 @@
pixel_x = 26
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/wood,
diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm
index 5b8e94d52d..ca032fdb28 100644
--- a/maps/tether/tether-05-station1.dmm
+++ b/maps/tether/tether-05-station1.dmm
@@ -14698,7 +14698,6 @@
/area/tether/exploration)
"bYK" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -15379,7 +15378,6 @@
icon_state = "0-2"
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
@@ -15929,7 +15927,6 @@
/area/quartermaster/belterdock/refinery)
"dfN" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/structure/cable/green{
@@ -28049,7 +28046,6 @@
dir = 4
},
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark{
@@ -28912,7 +28908,6 @@
/area/engineering/hallway)
"rFu" = (
/obj/structure/cable/green{
- dir = 1;
icon_state = "1-2"
},
/obj/machinery/hologram/holopad,