From 35172fd5ebeb60f3fc6f75d4f17c89e07e113fbd Mon Sep 17 00:00:00 2001 From: Selis <12716288+ItsSelis@users.noreply.github.com> Date: Wed, 8 Jan 2025 16:05:01 +0100 Subject: [PATCH] Midweek bugfix release (#16867) * fix adminjump to area (#16853) * fix a runtime in the keyloop (#16852) * fix a runtime in the keyloop * also fix that * gloves runtime * do it proper * fix stun effect act (#16850) * fix a runtime and some usr to user (#16849) * fix a runtimg and some usr to user * . * . * more usr * fix some bad replaces (#16856) * fix a lot of map issues (#16857) * fix a lot of map issues * fix SM template... * fix change turf (#16860) * Fluff item for Beeholddrbeesphb/Evelynn (#16859) * Fix synth_color not working (#16866) * Fix synth_color not working * Fix spawnpoint pref * living * oups --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: ShadowLarkens --- code/_helpers/unsorted.dm | 4 +- code/game/jobs/job_controller.dm | 8 +- .../objects/effects/decals/Cleanable/misc.dm | 3 + .../objects/items/devices/laserpointer.dm | 4 +- code/game/objects/random/mob.dm | 2 +- code/game/turfs/simulated.dm | 3 +- code/game/turfs/simulated/walls.dm | 2 +- code/modules/admin/verbs/adminjump.dm | 2 +- .../preference_setup/general/01_basic.dm | 4 +- .../types/character/general/01_basic.dm | 8 +- .../types/character/general/03_body.dm | 2 +- .../modules/client/preferences_spawnpoints.dm | 7 +- code/modules/client/verbs/ooc.dm | 2 +- .../spacesuits/rig/modules/protean.dm | 8 +- .../food/drinkingglass/drinkingglass.dm | 1 + .../mob/living/carbon/human/human_defense.dm | 9 +- code/modules/mob/living/living_defense.dm | 2 +- code/modules/overmap/spacetravel.dm | 2 +- code/modules/paperwork/photocopier.dm | 2 +- code/modules/paperwork/silicon_photography.dm | 68 +- code/modules/power/cable.dm | 14 +- code/modules/power/cable_heavyduty.dm | 4 +- code/modules/tgui/modules/late_choices.dm | 2 +- .../vore/fluffstuff/custom_items_vr.dm | 8 + code/modules/vore/persist/persist_vr.dm | 2 +- icons/obj/closets/coffin.dmi | Bin 561 -> 898 bytes icons/obj/flora/deadtrees.dmi | Bin 34184 -> 40858 bytes icons/obj/power_cond_heavy.dmi | Bin 1019 -> 1148 bytes icons/vore/custom_items_vr.dmi | Bin 66519 -> 63857 bytes maps/expedition_vr/aerostat/aerostat.dmm | 2 - maps/expedition_vr/space/fueldepot.dmm | 17 - maps/gateway_vr/lucky_7.dmm | 3 - maps/offmap_vr/om_ships/aro.dmm | 2 - maps/offmap_vr/om_ships/sdf_corvette.dmm | 34 - .../offmap_vr/om_ships/sdf_corvette_wreck.dmm | 36 - maps/offmap_vr/om_ships/sdf_cutter.dmm | 38 - maps/southern_cross/southern_cross-1.dmm | 3140 ----------------- maps/southern_cross/southern_cross-3.dmm | 406 --- maps/southern_cross/southern_cross-4.dmm | 178 - maps/submaps/admin_use_vr/ert.dmm | 5 - .../admin_use_vr/event_autonomous_drone.dmm | 1 - maps/submaps/depreciated_vr/talon1.dmm | 277 -- maps/submaps/depreciated_vr/talon2.dmm | 268 -- .../engine_submaps_vr/tether/engine_sme.dmm | 9 +- .../pois_vr/debris_field/tinycarrier.dmm | 6 - .../surface_submaps/mountains/Rockb1.dmm | 6 - maps/submaps/surface_submaps/plains/VRDen.dmm | 6 - .../surface_submaps/plains/dogbase.dmm | 10 - .../surface_submaps/wilderness/dogbase.dmm | 10 - maps/tether/tether-02-surface2.dmm | 8 - maps/tether/tether-05-station1.dmm | 5 - 51 files changed, 103 insertions(+), 4537 deletions(-) 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 2bb25db01d9f8ef1f2d7f594d662e47fdfc30c5d..db2c6e19319f5fe60bbeff5c184493dea97bd865 100644 GIT binary patch delta 818 zcmV-21I_%g1cC>U84Lyh005$$euMx30CJI=NPj6gC%-r~MTv_uC9|j)C}7CNnO2mT zn+jpWmE{+t=HXJLtl;YB0=66g8Ji^42@hys0008ZNklBzPhL82ofP1x?dHmSxy(w-%n(eLkP1ZU*I8Jms)luh$R? zg&-D-ktE2jMsfl=oz8BtSRCwQ4vtlK>VMAyYNEDt&wm^b2@vgoXgnl9v;(5?-zPx$ zGFYipq(-Abc7UtZiWpCAPi%w`)oPW?HkhK_Zj+s$Wd_vibuLacn@!2ywp=cGNbkY; z55VB_`8=f4X=1rtZqNSK?!-|Z4K?hE{y7!7j=ot_rokr?2|@${0ps96LF@LC)qjV@ z;~~X-SV1k+#F;=H!9&WW{K}2k9C5pTPYzwEE#pTjl{)wZ`zh% zs`UvzkZ0y9aP|6%l-F;sxjFSs|IAH`K>bxP_W{MrA~BwL5`9kWS-c1rk*DxjNt3dW zeL>o&VciX$f|-Du+Z$p$p~xyRZGSa|cq{?&&;^77F}Rz41x1w&!@3(hh476K#hvyA zl;9)coW58a?KB8|`TZIKhIr)c?4NOxWQA91O$UY?t5|6G~?sq9e=!xy&=!` z5yWY%{qgzUJZjOIE)@!e-7&YQ=YajXTZBHD0jjD(I2`6GKA+EtiPo3#5MmaeOeQd! z&5U|98iiysd6J0JZ=p6qr2gI-fgMg2bmO;p>&xA4S1OfCyKFY=is-Qz4u{b1_sPYG wNPXiHa0d_ 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 Q9uvag>FVdQ&MBb@0IRdtr~m)} diff --git a/icons/obj/power_cond_heavy.dmi b/icons/obj/power_cond_heavy.dmi index 69b9ef085b1f5f85760cb185f886c10557134ac1..82b1fd7ee6bbad6a3807e88d457e94584be7f5b4 100644 GIT binary patch delta 945 zcmV;i15W(=2mA<-BmppyB{UUtiq>oZ0004WQchC(TY}603Rr@(SAj5q zR;{EvUSFy9%Sy;VT3@MuhqX}8kb|W9J_*w|J&OtJLAAw;{^CEB0NxHCul=`M=l(|+0R^MBM90=>HZX?I*6Ue8Z7ybhP1sqy`FW!)S2|m3F&;$1B z%LjmxY_A>)Dzm-%@&OdE1ZS@TVE~Z70|(;$0R-T${ehXME5z?1fH41u{%4+EBYuwo z1o=PoKXWvVs1*Z1i2p3C>;xdnNlHkR3n)Nqp@i*_Yt#Rj{)^fcppUMSOk$N#y(ho8K>bSDg8P z$oT;_zhCTJapnUe=LgvQez9}Kc{dz6Kfvbqi=8XZyWz-x`2jY+U+laHZ07?a=LgvQ zezEf+u$>QxoF8EG`?wt7&kwNqeOwOk=LgvQez9}KnGcAZA7JzQ#m*IHK0tha0Ezhg z020Ri(*1sT{{=w$r4zhg`n4OpKRbW|mf-AFApL;y0Z1p=?tK8s?lR5}pnxSfdlh5` zfcQH)Qi;!h4|MB8Wgv|b&ktDsZjaslS=v7Tq3p4m-#;Mw0|fuK{M{0d;nPWaj$?@h zyMI9S2MGRextpb4!>6Nuu(Z^Q-9MoE0|fu~A7B9V>X!lF14R7;sy{&Rf6L!3{oVqw z^qSp2p!x#@|Mwr@M_>yO^$)220Kxx>9N0u4kOOaj`Ug~hfZ+c`4%j3la^Ow>fa(tr z{NFFL;nT5<+A#u7nWFvy)gK`EzrWFRPc?5O?L+w+73v@C?hkZo*-G2cRxJMi1?w-9 z_7C^(pC4$ZZ_}DM(TL9zUI5g5sJw;s;zO-XzxUL`FBt*hvEJ+e3Rr?qtb%_gb%B+g T=X=!*00000NkvXXu0mjf*KX0k delta 815 zcmeyv@tb{u3ZwBvRTGH=2M#RVlwiZaz`$4%`3x;TbZ%y~QeVpWp?PphVDs@3-I^|up6xm3TZT)Mz# zksQt$Ic;0rAH^`y_+{J9&vz>b_Dc1CkaEuNSc=zyE6;M|_y3%xP|U=tbMT&jV-b_M zanSC4dyS^Acbw9^ZLiVwgNN^|sAuqe8!PJfPRcqaJ~S)8q+!apUF&*xtMNU%ttq9j z@NU%Y+Ie%<^2)rk|31H*anjA*TsC%>(?lb58{Jv&Ox?`%?o=dW7XO-UoG)!J>=WUh zaN%C)fgRazF8tefA-$_~Wd^^|7wIFBxt>i5 z&-Oj{i>rEn$f-Mg0y2$fxn>;oXn0gFu|Iu_)InA4M$7+)f7mX+y@iwK5C7xubJhhk zrpJiX?{f3hc6h_Mi)pc`*EUY&>V}T{#k*YVYtBRTKL5h@(bliwNqt?-iT4_eZ~rlP zCA9uK@a^E@A1quA=bQg;)(3{-!JyRt?3>gB4yf7Lxo-lC9Qw!bPJYkyUw;@T71TAH z{eDkQYX-l-IsOel@BMD&ddA%HnK@_Q_qv5m<%bXbWHh^9y+7dK?!F%A03@bxF73J4$jd+Tpq#s7&7-@Mf;_J7MZuc-gV z!WGf9cYf2_{WFeeJ$U-XP<}!!=eIg8BlQLU{sMKq=RfjK@9cm1FYE&U-9;YO*H_jv ze5!X5{5SnOyTX5WZHG_$_t-Q1w2x!#`v3GVf3c{-&-i=t4S(bVTOg`EUfq{>h`J^3VIbeIj{+~>AL3S49o!xp6srEF6*2UngBc=lxY9} diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index d502efb78cb61d46e7b205b0b1d8a6c511bed0be..acea13b8317b4cbec4cd20caef62e7b9895e18ac 100644 GIT binary patch literal 63857 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

V^Euzoa`~K+ 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

P55&r4wE)v%Hld@8) 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 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,