From 71b5f92eda47b8a8d4ab06de79fc6143e88d9ebd Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 10 Nov 2021 22:17:26 +0000 Subject: [PATCH] [MIRROR] [MDB IGNORE] dir sanity, primarily on WALLITEMs [MDB IGNORE] (#9315) * [MDB IGNORE] dir sanity, primarily on WALLITEMs (#62601) About The Pull Request Wall items mostly use the direction from the floor to the wall in the named mapping helper. Wall items mostly use the direction from the wall to the floor for the internal dir variable. This leads to a headache when it comes to working out what conflicts with what, and what needs placing where. Wall frames provided a member, inverse, which specified whether or not to invert the direction of the item when looking for conflicts. It was also used to specify whether to look for conflicts outside of the wall (cameras and lights appear external to the wall) or inside the wall (most wall items). This flag was set for Intercoms, APCs, and Lights. Since APCs and Lights expect a floor-to-wall direction, and Intercoms expect a wall-to-floor direction, this means that APCs and Lights were getting the correct direction, and Intercoms were getting the wrong direction. Some implications of this setup were: You could build an APC on top of another wall item, provided there was nothing external attached to the wall and the area didn't have an APC. You could stack Intercoms indefinitely on top of the same wall, provided you weren't in a one-tile wide corridor with something on the opposite wall. Or both! Here's twenty Intercoms placed on the wall, and a freshly placed APC frame after placing all Intercoms and deconstructing the old APC: endless-stack-of-intercoms Not everything used this inverse variable to adjust to the correct direction. For example, /obj/machinery/defibrillator_mount just used a negative pixel_offset to be visually placed in the correct direction, even though the internal direction was wrong, and never set! This also let you stack an indefinite number of defib mounts on the same wall, provided it wasn't a northern wall... except you could do this to northern walls too, since defibs weren't considered a wall item for the purposes of checking collisions at all! Ultimately, every constructable interior wall item either used this inverse variable to adjust to the correct placement, set a negative pixel_offset variable to have its offset adjusted to the correct placement, or overrode New or Initialize to run its own checks and assignment to pixel_x and pixel_y! Inventory: Table of various paths, related paths, and the adjustments they used Unfortunately, untangling /obj/structure/sign is going to be another major headache, and this has already exploded in scope enough already, so we can't get rid of the get_turf_pixel call just yet. This also doesn't fix problems with the special 2x1 /obj/structure/sign/barsign. Some non-wall items have been made to use the new MAPPING_DIRECTIONAL_HELPERS as part of the directional cleanup. tl;dr: All wall mounted items and some directional objects now use the same direction that they were labelled as. More consistent directional types everywhere. Why It's Good For The Game fml Changelog cl refactor: Wall mounted and directional objects have undergone major internal simplification. Please report anything unusual! fix: You can no longer stack an indefinite amount of Intercoms on the same wall. fix: Defibrillator Mounts, Bluespace Gas Vendors, Turret Controlers, and Ticket Machines are now considered wall items. fix: Wall mounted items on top of the wall now consistently check against other items on top of the wall, and items coming out of the wall now consistently check against other items coming out of the wall. fix: The various directional pixel offsets within an APC, Fire Extinguisher Cabinet, Intercom, or Newscaster have been made consistent with each other. fix: The pixel offsets of Intercoms, Fire Alarms, Fire Extinguisher Cabinets, Flashers, and Newscasters have been made consistent between roundstart and constructed instances. fix: Constructed Turret Controls will no longer oddly overhang the wall they were placed on. qol: Defibrillator mounts now better indicate which side of the wall they are on. fix: Some instances where there were multiple identical lights on the same tile have been fixed to only have one. /cl * [MDB IGNORE] dir sanity, primarily on WALLITEMs * apc directionals * bluespace vendor fix * defib fix Co-authored-by: esainane Co-authored-by: jjpark-kb <55967837+jjpark-kb@users.noreply.github.com> --- .../IceRuins/icemoon_surface_bughabitat.dmm | 4 +- ..._underground_abandoned_plasma_facility.dmm | 4 +- .../LavaRuins/lavaland_biodome_beach.dmm | 10 +- .../lavaland_surface_biodome_winter.dmm | 2 +- .../lavaland_surface_syndicate_base1.dmm | 38 +- .../OceanRuins/ocean_hideout_below.dmm | 2 +- _maps/RandomRuins/SpaceRuins/DJstation.dmm | 2 +- _maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 22 +- .../RandomRuins/SpaceRuins/caravanambush.dmm | 8 +- _maps/RandomRuins/SpaceRuins/crashedship.dmm | 2 +- _maps/RandomRuins/SpaceRuins/deepstorage.dmm | 30 +- _maps/RandomRuins/SpaceRuins/derelict6.dmm | 2 +- .../RandomRuins/SpaceRuins/forgottenship.dmm | 8 +- .../RandomRuins/SpaceRuins/gasthelizards.dmm | 2 +- .../SpaceRuins/listeningstation.dmm | 10 +- _maps/RandomRuins/SpaceRuins/oldAIsat.dmm | 2 +- _maps/RandomRuins/SpaceRuins/oldstation.dmm | 42 +- .../RandomRuins/SpaceRuins/oldteleporter.dmm | 10 +- _maps/RandomRuins/SpaceRuins/onehalf.dmm | 8 +- _maps/RandomRuins/SpaceRuins/spacehotel.dmm | 6 +- .../SpaceRuins/spacehotel_skyrat.dmm | 40 +- .../SpaceRuins/turretedoutpost.dmm | 2 +- _maps/RandomRuins/SpaceRuins/vaporwave.dmm | 2 +- _maps/RandomZLevels/Academy.dmm | 24 +- _maps/RandomZLevels/SnowCabin.dmm | 8 +- _maps/RandomZLevels/caves.dmm | 8 +- _maps/RandomZLevels/challenge.dmm | 21 +- _maps/RandomZLevels/moonoutpost19.dmm | 133 +-- _maps/RandomZLevels/research.dmm | 16 +- _maps/RandomZLevels/snowdin.dmm | 194 ++-- _maps/RandomZLevels/undergroundoutpost45.dmm | 107 +-- _maps/RandomZLevels/wildwest.dmm | 2 +- _maps/RandomZLevels/zombieprison.dmm | 4 +- _maps/map_files/Blueshift/BlueShift.dmm | 412 ++++----- _maps/map_files/CTF/downtown.dmm | 23 +- .../map_files/Deltastation/DeltaStation2.dmm | 290 +++--- .../Deltastation/DeltaStation2_skyrat.dmm | 290 +++--- .../map_files/IceBoxStation/IceBoxStation.dmm | 262 +++--- .../IceBoxStation/IceBoxStation_skyrat.dmm | 252 ++--- .../IcemoonUnderground_Above.dmm | 34 +- .../IcemoonUnderground_Above_skyrat.dmm | 44 +- .../IcemoonUnderground_Below.dmm | 2 +- .../IcemoonUnderground_Below_skyrat.dmm | 2 +- _maps/map_files/KiloStation/KiloStation.dmm | 226 ++--- .../KiloStation/KiloStation_skyrat.dmm | 226 ++--- _maps/map_files/MetaStation/MetaStation.dmm | 280 +++--- .../MetaStation/MetaStation_skyrat.dmm | 278 +++--- _maps/map_files/Mining/Lavaland.dmm | 94 +- _maps/map_files/Mining/Rockplanet.dmm | 18 +- _maps/map_files/NSSJourney/NSSJourney.dmm | 276 +++--- .../WaterKiloStation/WaterKiloStation.dmm | 220 ++--- _maps/map_files/debug/multiz.dmm | 20 +- _maps/map_files/debug/runtimestation.dmm | 125 ++- _maps/map_files/generic/CentCom.dmm | 871 +++++++++--------- _maps/map_files/generic/CentCom_skyrat.dmm | 10 +- _maps/map_files/generic/CentCom_skyrat_z2.dmm | 4 +- _maps/map_files/tramstation/tramstation.dmm | 280 +++--- .../tramstation/tramstation_skyrat.dmm | 256 ++--- _maps/shuttles/aux_base_default.dmm | 3 +- _maps/shuttles/aux_base_small.dmm | 3 +- _maps/shuttles/cargo_delta.dmm | 4 +- _maps/shuttles/emergency_bar.dmm | 2 +- _maps/shuttles/emergency_casino.dmm | 34 +- _maps/shuttles/emergency_clown.dmm | 23 +- _maps/shuttles/emergency_delta.dmm | 10 +- _maps/shuttles/emergency_monastery.dmm | 103 +-- _maps/shuttles/emergency_zeta.dmm | 34 +- _maps/shuttles/ferry_fancy.dmm | 2 +- _maps/shuttles/infiltrator_advanced.dmm | 7 +- _maps/shuttles/mining_kilo.dmm | 2 +- _maps/shuttles/mining_large.dmm | 2 +- _maps/shuttles/pirate_default.dmm | 20 +- _maps/shuttles/pirate_enclave.dmm | 2 +- _maps/shuttles/pirate_silverscale.dmm | 4 +- _maps/shuttles/ruin_caravan_victim.dmm | 17 +- _maps/shuttles/ruin_pirate_cutter.dmm | 8 +- _maps/shuttles/ruin_syndicate_dropship.dmm | 3 +- .../shuttles/ruin_syndicate_fighter_shiv.dmm | 3 +- _maps/shuttles/whiteship_box.dmm | 29 +- _maps/shuttles/whiteship_delta.dmm | 31 +- _maps/shuttles/whiteship_kilo.dmm | 17 +- _maps/shuttles/whiteship_meta.dmm | 51 +- _maps/shuttles/whiteship_tram.dmm | 8 +- _maps/skyrat/shuttles/slaver_syndie.dmm | 2 +- _maps/templates/hilbertshotel.dmm | 2 +- _maps/templates/hilbertshotellore.dmm | 4 +- _maps/templates/holodeck_lounge.dmm | 6 +- _maps/templates/shelter_3.dmm | 4 +- code/__DEFINES/directional.dm | 17 + code/__HELPERS/atoms.dm | 38 +- code/__HELPERS/global_lists.dm | 16 +- code/game/machinery/bounty_board.dm | 21 +- code/game/machinery/buttons.dm | 19 +- code/game/machinery/camera/camera.dm | 6 + code/game/machinery/camera/camera_assembly.dm | 1 + code/game/machinery/computer/camera.dm | 16 +- code/game/machinery/defibrillator_mount.dm | 34 +- code/game/machinery/firealarm.dm | 20 +- code/game/machinery/flasher.dm | 23 +- code/game/machinery/igniter.dm | 16 +- code/game/machinery/lightswitch.dm | 16 +- code/game/machinery/newscaster.dm | 29 +- .../machinery/porta_turret/portable_turret.dm | 4 +- code/game/machinery/requests_console.dm | 16 +- code/game/machinery/status_display.dm | 37 +- code/game/objects/items/apc_frame.dm | 97 -- .../objects/items/devices/radio/intercom.dm | 32 +- code/game/objects/items/storage/secure.dm | 18 +- code/game/objects/items/wall_mounted.dm | 91 ++ .../objects/structures/beds_chairs/chair.dm | 26 +- code/game/objects/structures/extinguisher.dm | 32 +- code/game/objects/structures/fireaxe.dm | 16 +- code/game/objects/structures/mirror.dm | 16 +- code/game/objects/structures/noticeboard.dm | 16 +- code/game/objects/structures/watercloset.dm | 16 +- code/modules/art/paintings.dm | 4 +- .../atmospherics/machinery/airalarm.dm | 19 +- .../machinery/bluespace_vendor.dm | 21 +- code/modules/mining/aux_base.dm | 16 +- code/modules/paperwork/ticketmachine.dm | 16 +- code/modules/photography/photos/frame.dm | 4 +- code/modules/power/apc.dm | 68 +- .../power/lighting/light_mapping_helpers.dm | 216 +---- .../power/lighting/light_wallframes.dm | 2 +- code/modules/reagents/reagent_dispenser.dm | 32 +- .../security_levels/keycard_authentication.dm | 16 +- code/modules/vending/medical_wall.dm | 16 +- .../components/bluespace_gas_selling.dmi | Bin 12690 -> 12655 bytes icons/obj/machines/camera.dmi | Bin 8933 -> 8258 bytes icons/obj/monitors.dmi | Bin 17747 -> 17878 bytes icons/obj/terminals.dmi | Bin 19522 -> 19521 bytes ...oon_underground_syndicate_base1_skyrat.dmm | 16 +- ...avaland_surface_syndicate_base1_skyrat.dmm | 16 +- .../RandomRuins/RockplanetRuins/cozycabin.dmm | 2 +- ...kplanet_surface_syndicate_base1_skyrat.dmm | 16 +- .../RandomRuins/RockplanetRuins/throwback.dmm | 2 +- .../RandomRuins/SpaceRuins/blackmarket.dmm | 2 +- .../RandomRuins/SpaceRuins/cargodiselost.dmm | 2 +- .../SpaceRuins/forgottenship_skyrat.dmm | 2 +- .../RandomRuins/SpaceRuins/interdynefob.dmm | 58 +- .../RandomRuins/SpaceRuins/shuttle8532.dmm | 10 +- .../RandomRuins/SpaceRuins/vaulttango.dmm | 2 +- tgstation.dme | 2 + tools/UpdatePaths/camera_diag_f2w.txt | 4 + tools/UpdatePaths/wallitems_f2w.txt | 94 ++ 145 files changed, 3328 insertions(+), 4029 deletions(-) create mode 100644 code/__DEFINES/directional.dm create mode 100644 code/game/objects/items/wall_mounted.dm create mode 100644 tools/UpdatePaths/camera_diag_f2w.txt create mode 100644 tools/UpdatePaths/wallitems_f2w.txt diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_bughabitat.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_bughabitat.dmm index c1f93c23d38..b323136c3bb 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_bughabitat.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_bughabitat.dmm @@ -76,7 +76,7 @@ "hy" = ( /obj/effect/decal/remains/human, /obj/item/clothing/suit/toggle/labcoat, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/window/reinforced/spawner/north, /turf/open/floor/plastic, @@ -333,9 +333,9 @@ /obj/structure/toilet{ dir = 8 }, -/obj/machinery/light/small/blacklight, /obj/item/plunger, /mob/living/simple_animal/mouse, +/obj/machinery/light/small/blacklight/directional/south, /turf/open/floor/plastic, /area/ruin/bughabitat) "Pt" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm index 11d4833068b..5419f0cf03e 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm @@ -1239,7 +1239,7 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "su" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/large, /area/ruin/plasma_facility/commons) @@ -1595,7 +1595,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/smooth_large{ initial_gas_mix = "ICEMOON_ATMOS" }, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm index 6838edbf8aa..615ca38e667 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm @@ -237,7 +237,7 @@ /obj/effect/turf_decal/stripes/asteroid/line{ dir = 8 }, -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /turf/open/floor/sepia, /area/ruin/powered/beach) "cR" = ( @@ -371,7 +371,7 @@ "hC" = ( /obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) "hF" = ( @@ -1016,7 +1016,7 @@ dir = 1; layer = 2.9 }, -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/item/storage/backpack/duffelbag, /obj/item/clothing/under/shorts/red, /obj/item/clothing/glasses/sunglasses, @@ -1273,7 +1273,7 @@ /area/ruin/powered/beach) "Rb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) "Rk" = ( @@ -1701,7 +1701,7 @@ aj NJ Bg Ti -rn +Fa zv aC Zi diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm index e5d83859df9..2e2dc44d8a0 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm @@ -261,7 +261,7 @@ /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) "gz" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /mob/living/simple_animal/hostile/skeleton/eskimo, /turf/open/floor/pod/dark, /area/ruin/powered/snow_biodome) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index 4bc15d840e6..5fcd870baca 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -336,7 +336,8 @@ /area/ruin/syndicate_lava_base/cargo) "dL" = ( /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/structure/closet/crate, /obj/item/extinguisher{ @@ -481,7 +482,7 @@ }, /obj/item/reagent_containers/dropper, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -1513,7 +1514,8 @@ /obj/structure/closet/l3closet, /obj/machinery/light/small/directional/west, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -2386,7 +2388,8 @@ /obj/item/ammo_box/magazine/m9mm, /obj/item/ammo_box/magazine/sniper_rounds, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) @@ -2407,7 +2410,8 @@ /obj/structure/table/wood, /obj/item/ammo_box/magazine/m9mm, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) @@ -2757,7 +2761,8 @@ /area/ruin/syndicate_lava_base/dormitories) "iB" = ( /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, @@ -3135,7 +3140,8 @@ dir = 4 }, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) @@ -3158,7 +3164,8 @@ dir = 8 }, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) @@ -3289,7 +3296,7 @@ }, /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -3582,7 +3589,7 @@ /area/ruin/syndicate_lava_base/bar) "kq" = ( /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/vending/coffee{ @@ -3749,7 +3756,7 @@ /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "kJ" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -3767,7 +3774,7 @@ /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "kK" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -4242,7 +4249,7 @@ dir = 4; pixel_x = -24 }, -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -4365,7 +4372,7 @@ pixel_x = 11 }, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -5224,7 +5231,8 @@ "nU" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 diff --git a/_maps/RandomRuins/OceanRuins/ocean_hideout_below.dmm b/_maps/RandomRuins/OceanRuins/ocean_hideout_below.dmm index 274393915d9..67e6493ce09 100644 --- a/_maps/RandomRuins/OceanRuins/ocean_hideout_below.dmm +++ b/_maps/RandomRuins/OceanRuins/ocean_hideout_below.dmm @@ -32,7 +32,7 @@ /turf/open/floor/plating/ocean/rock/heavy, /area/ruin/ocean/saddam_hole) "R" = ( -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ start_charge = 0 }, /obj/structure/cable, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm index ce2f5ab8882..e8f41a70fd4 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm @@ -64,7 +64,7 @@ /turf/open/floor/plating, /area/ruin/space/djstation) "ap" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/closet/crate, /obj/effect/spawner/random/exotic/syndie, diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm index 4a9327265ec..555a445971c 100644 --- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm @@ -531,7 +531,7 @@ }, /area/ruin/space/derelict/gravity_generator) "cQ" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/derelict/bridge/access) @@ -2051,12 +2051,12 @@ /turf/open/floor/iron/airless, /area/ruin/space/derelict/medical/chapel) "jy" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/derelict/medical/chapel) "jz" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white/airless, /area/ruin/space/derelict/medical) @@ -2249,7 +2249,7 @@ /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/primary) "kr" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/derelict/arrival) @@ -2364,7 +2364,7 @@ /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/primary) "la" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/primary) @@ -2816,7 +2816,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/secondary) "mX" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/secondary) @@ -2834,7 +2834,7 @@ /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/secondary) "nc" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/secondary) @@ -3307,7 +3307,7 @@ /area/ruin/space/derelict/singularity_engine) "zB" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/spawner/random/maintenance, /obj/structure/cable, /turf/open/floor/iron, @@ -3384,7 +3384,7 @@ /turf/open/floor/iron/airless, /area/ruin/space/derelict/bridge/ai_upload) "El" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron/airless, /area/ruin/space/derelict/hallway/primary) "Ev" = ( @@ -3552,7 +3552,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) "Ni" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/derelict/bridge/ai_upload) @@ -7124,7 +7124,7 @@ go gc kP go -lg +sd lr lr lr diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm index 6dfaa224c6a..c31e76e0a52 100644 --- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm +++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm @@ -91,7 +91,7 @@ /area/template_noop) "av" = ( /obj/effect/turf_decal/bot_white/right, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -226,7 +226,7 @@ /obj/effect/turf_decal/bot_white/right, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light/small/directional/north, /obj/structure/cable, /obj/machinery/button/door/directional/north{ @@ -729,7 +729,7 @@ /area/shuttle/caravan/freighter3) "ie" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -1006,7 +1006,7 @@ "ju" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron/airless, diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm index cd181554fd3..08ca76aa543 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm @@ -1434,7 +1434,7 @@ }, /area/awaymission/bmpship/fore) "fK" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /turf/open/floor/plating/airless{ icon_state = "platingdmg3" }, diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 714dcb326c0..75b6b83f45f 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -166,7 +166,8 @@ /obj/item/stack/package_wrap, /obj/effect/turf_decal/delivery, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -364,7 +365,8 @@ /obj/structure/table, /obj/machinery/reagentgrinder, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -787,7 +789,7 @@ "ch" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/airalarm/away{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -833,7 +835,8 @@ "cm" = ( /obj/structure/table, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -884,7 +887,8 @@ "cs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron/freezer, /area/ruin/space/has_grav/deepstorage) @@ -1108,7 +1112,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/storage) "cS" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage) @@ -1229,7 +1233,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage) @@ -1464,7 +1468,7 @@ pixel_x = 4 }, /obj/machinery/airalarm/away{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron/dark, @@ -1988,7 +1992,8 @@ dir = 8 }, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -2226,7 +2231,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage) "fU" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Bunker entrance"; network = list("bunker1") }, @@ -2328,7 +2333,7 @@ /obj/machinery/washing_machine, /obj/machinery/light/directional/east, /obj/machinery/airalarm/away{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -2633,7 +2638,8 @@ dir = 4 }, /obj/machinery/airalarm/away{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/light, /area/ruin/space/has_grav/deepstorage/hydroponics) diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm index e902046bc68..9220bcae7e2 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm @@ -307,7 +307,7 @@ /turf/open/floor/iron/cafeteria/airless, /area/ruin/unpowered) "bd" = ( -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 diff --git a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm index e51046332e1..4f7f95d2ec0 100644 --- a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm +++ b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm @@ -79,7 +79,7 @@ "ar" = ( /obj/machinery/camera/xray{ c_tag = "Medbay"; - dir = 9; + dir = 6; network = list("fsci"); screen_loc = "" }, @@ -584,7 +584,8 @@ /area/ruin/space/has_grav/syndicate_forgotten_ship) "bP" = ( /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -1039,9 +1040,8 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "cX" = ( -/obj/machinery/camera/xray{ +/obj/machinery/camera/xray/directional/east{ c_tag = "Conference room"; - dir = 8; network = list("fsc"); screen_loc = "" }, diff --git a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm index a2bfe0d50ac..ab60e6b8146 100644 --- a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm +++ b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm @@ -164,7 +164,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/gasthelizard) diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm index 0bc6e66b6ea..899b55b3f86 100644 --- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm @@ -11,7 +11,8 @@ "ad" = ( /obj/machinery/computer/message_monitor, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -597,7 +598,8 @@ /area/ruin/space/has_grav/listeningstation) "aU" = ( /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -680,7 +682,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) "ba" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4; piping_layer = 4; @@ -693,7 +695,7 @@ /obj/effect/turf_decal/stripes/red/corner, /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm index da03f0e5438..14c05bdc366 100644 --- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm @@ -43,7 +43,7 @@ /turf/open/floor/plating/airless, /area/tcommsat/oldaisat) "ak" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating/airless, /area/tcommsat/oldaisat) diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index 284dfab2c03..f3ae9ad5ce5 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -337,7 +337,7 @@ dir = 1 }, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/light/directional/east, @@ -1223,7 +1223,7 @@ "du" = ( /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -1673,7 +1673,7 @@ "eC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron/white, @@ -2369,7 +2369,8 @@ "gv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/effect/decal/cleanable/food/egg_smudge, /obj/structure/cable, @@ -2625,7 +2626,7 @@ /area/ruin/space/has_grav/ancientstation/rnd) "hj" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -3775,7 +3776,7 @@ "jy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -3898,15 +3899,13 @@ /turf/open/floor/iron/white, /area/ruin/space/has_grav/ancientstation/proto) "jO" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/machinery/light/small/broken/directional/north, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/atmo) "jP" = ( @@ -4089,7 +4088,8 @@ "kj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/ancientstation/proto) @@ -4649,7 +4649,7 @@ dir = 4 }, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron, @@ -4657,7 +4657,7 @@ "lL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/turf_decal/tile/yellow, @@ -5457,9 +5457,6 @@ }, /obj/item/retractor, /obj/item/surgical_drapes, -/obj/machinery/light/small/broken{ - dir = 8 - }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -5467,6 +5464,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/iron/airless, /area/ruin/space/has_grav/ancientstation/medbay) "nD" = ( @@ -5810,9 +5808,6 @@ icon_state = "plant-25" }, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/broken{ - dir = 8 - }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -5822,6 +5817,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/light/small/broken/directional/west, /turf/open/floor/iron/airless, /area/ruin/space/has_grav/ancientstation/medbay) "ox" = ( @@ -5995,11 +5991,9 @@ /obj/item/shard{ icon_state = "small" }, -/obj/machinery/light/broken{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/broken/directional/west, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "oR" = ( @@ -6038,7 +6032,7 @@ }, /obj/effect/decal/cleanable/glass, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/plating/airless{ @@ -6756,7 +6750,7 @@ "Iw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt, @@ -7203,7 +7197,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron, diff --git a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm index f27dd4100f8..dbfc1b19111 100644 --- a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm @@ -21,9 +21,7 @@ }, /area/ruin/space/oldteleporter) "g" = ( -/obj/structure/light_construct/small{ - dir = 1 - }, +/obj/structure/light_construct/small/directional/north, /turf/open/floor/iron/airless{ icon_state = "damaged3" }, @@ -43,9 +41,7 @@ /turf/open/floor/iron/airless, /area/ruin/space/oldteleporter) "k" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, +/obj/structure/light_construct/small/directional/east, /turf/open/floor/plating/airless, /area/ruin/space/oldteleporter) "l" = ( @@ -62,7 +58,7 @@ }, /area/ruin/space/oldteleporter) "n" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/airless, /area/ruin/space/oldteleporter) diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm index 5c4b2427719..8fb93a9a4a0 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm @@ -191,7 +191,7 @@ /obj/item/healthanalyzer, /obj/item/reagent_containers/blood/o_minus, /obj/item/reagent_containers/blood/o_minus, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/ruin/space/has_grav/onehalf/dorms_med) @@ -267,7 +267,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/drone_bay) "aY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -502,7 +502,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/has_grav/onehalf/hallway) @@ -672,7 +672,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) "cf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm index a5694ac2a51..8a18a66ad4f 100644 --- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm @@ -1787,7 +1787,7 @@ /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/hotel/bar) "gr" = ( -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -2351,7 +2351,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/hotel/bar) "hZ" = ( @@ -4143,7 +4143,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/hotel/custodial) "mF" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel_skyrat.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel_skyrat.dmm index 99391ad614b..becf2c9fe7b 100644 --- a/_maps/RandomRuins/SpaceRuins/spacehotel_skyrat.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacehotel_skyrat.dmm @@ -840,7 +840,7 @@ /area/ruin/space/has_grav/hotel/power) "fB" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_3) "fC" = ( @@ -873,7 +873,7 @@ /area/ruin/space/has_grav/hotel/guestroom/room_3) "fE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_4) "fF" = ( @@ -1010,7 +1010,7 @@ /area/ruin/space/has_grav/hotel/power) "gr" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_5) "gs" = ( @@ -1076,7 +1076,7 @@ /obj/item/food/meat/slab/bear, /obj/item/food/meat/slab/bear, /obj/item/food/meat/slab/bear, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/ruin/space/has_grav/hotel/bar) "gE" = ( @@ -1241,7 +1241,7 @@ "hs" = ( /obj/structure/filingcabinet, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet/black, /area/ruin/space/has_grav/hotel/dock) "hu" = ( @@ -1268,7 +1268,7 @@ /area/ruin/space/has_grav/hotel/bar) "hx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_6) "hy" = ( @@ -1292,7 +1292,7 @@ name = "Accidents Happen" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/hotel/workroom/quarters) "hB" = ( @@ -1603,7 +1603,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/ruin/space/has_grav/hotel/power) "ix" = ( @@ -1752,7 +1752,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/hotel) "jc" = ( @@ -2928,7 +2928,7 @@ }, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/ruin/space/has_grav/hotel/custodial) "mL" = ( @@ -3139,7 +3139,7 @@ "oD" = ( /obj/structure/cable, /obj/machinery/seed_extractor, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/ruin/space/has_grav/hotel/bar) "oF" = ( @@ -3992,7 +3992,7 @@ /area/ruin/space/has_grav/hotel/guestroom/room_6) "xc" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_2) "xd" = ( @@ -4607,7 +4607,7 @@ /area/ruin/space/has_grav/hotel/guestroom/room_4) "Ch" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/ruin/space/has_grav/hotel) "Ci" = ( @@ -4636,7 +4636,7 @@ /area/ruin/space/has_grav/hotel) "Cv" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/bar) "Cw" = ( @@ -4998,7 +4998,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/sauna) "Fx" = ( @@ -5414,7 +5414,7 @@ /area/ruin/space/has_grav/hotel) "JG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/guestroom/room_1) "JQ" = ( @@ -5435,7 +5435,7 @@ "JZ" = ( /obj/structure/table, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/ruin/space/has_grav/hotel/workroom) "Kd" = ( @@ -5542,7 +5542,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/hotel/bar) "KW" = ( @@ -6238,7 +6238,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/ruin/space/has_grav/hotel/workroom) "Rh" = ( @@ -6545,7 +6545,7 @@ /area/ruin/space/has_grav/hotel/workroom) "TI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/ruin/space/has_grav/hotel/dock) "TK" = ( diff --git a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm index 833af4ef8b7..621c86ff351 100644 --- a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm +++ b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm @@ -71,7 +71,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/turretedoutpost) "ar" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/ruin/space/has_grav/turretedoutpost) "as" = ( diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm index 94e5d6eb7c9..6e8f7f0b5fe 100644 --- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm +++ b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm @@ -35,7 +35,7 @@ /turf/open/floor/iron/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "j" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm index c5b4ca30f96..3b78753b8e3 100644 --- a/_maps/RandomZLevels/Academy.dmm +++ b/_maps/RandomZLevels/Academy.dmm @@ -449,10 +449,8 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/academy/headmaster) "ch" = ( -/obj/structure/chair/stool/directional/east, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/structure/chair/stool/directional/west, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron/showroomfloor, /area/awaymission/academy/headmaster) "ci" = ( @@ -486,7 +484,7 @@ /turf/open/floor/plating, /area/awaymission/academy/headmaster) "cp" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron/showroomfloor, /area/awaymission/academy/headmaster) "ct" = ( @@ -772,10 +770,8 @@ /turf/open/floor/iron/white, /area/awaymission/academy/classrooms) "dG" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/machinery/chem_master/condimaster, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron/white, /area/awaymission/academy/classrooms) "dH" = ( @@ -1365,9 +1361,7 @@ /turf/open/floor/iron, /area/awaymission/academy/classrooms) "fX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/academy/classrooms) "fY" = ( @@ -1601,10 +1595,8 @@ /turf/open/floor/iron, /area/awaymission/academy/classrooms) "gQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, /mob/living/simple_animal/hostile/bear, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/awaymission/academy/classrooms) "gR" = ( @@ -11469,9 +11461,9 @@ ab ah ah ah -ax +rl ah -ax +rl ah ah ah diff --git a/_maps/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm index bb936c2398c..9b7725bd208 100644 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ b/_maps/RandomZLevels/SnowCabin.dmm @@ -202,7 +202,7 @@ }, /area/awaymission/cabin) "aF" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -4369,11 +4369,11 @@ /area/awaymission/cabin/caves) "lH" = ( /obj/effect/decal/remains/human, -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/cabin/caves) "lI" = ( -/obj/structure/light_construct, +/obj/structure/light_construct/directional/south, /turf/open/floor/plating/asteroid/snow, /area/awaymission/cabin/caves) "lJ" = ( @@ -5100,7 +5100,7 @@ /obj/structure/window{ dir = 4 }, -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/wood, /area/awaymission/cabin) "nU" = ( diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm index 750cd4f8bbe..2c2bbfcca1a 100644 --- a/_maps/RandomZLevels/caves.dmm +++ b/_maps/RandomZLevels/caves.dmm @@ -1781,7 +1781,7 @@ /turf/open/floor/plating, /area/awaymission/caves/bmp_asteroid) "gI" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, @@ -17007,7 +17007,7 @@ fy gi fy fy -nG +gq gy fH cj @@ -17777,9 +17777,9 @@ bM fy fW ev -nG +gq gm -nG +gq dW bL bL diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm index 4d4fa716574..6bb7b6d0e79 100644 --- a/_maps/RandomZLevels/challenge.dmm +++ b/_maps/RandomZLevels/challenge.dmm @@ -608,10 +608,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, /turf/open/floor/iron/dark, /area/awaymission/challenge/end) "cd" = ( @@ -974,6 +970,19 @@ /obj/structure/closet/l3closet, /turf/open/floor/circuit, /area/awaymission/challenge/end) +"hR" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching evil areas."; + name = "Security Monitor"; + network = ""; + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + name = "Station Intercom (General)" + }, +/turf/open/floor/iron/dark, +/area/awaymission/challenge/end) (1,1,1) = {" aa @@ -26827,7 +26836,7 @@ aA aa aa bP -bS +hR cc cl cb @@ -27598,7 +27607,7 @@ bI bM aF bP -bS +hR cc cd cu diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index 716e5266a0c..0bd55d7a859 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -406,7 +406,7 @@ }, /area/awaymission/moonoutpost19/syndicate) "bo" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ pixel_y = 23; req_access = null; req_access_txt = "150" @@ -425,9 +425,7 @@ pixel_x = -3; pixel_y = 6 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -591,8 +589,7 @@ /area/awaymission/moonoutpost19/syndicate) "bE" = ( /obj/machinery/light/directional/east, -/obj/machinery/airalarm{ - dir = 8; +/obj/machinery/airalarm/directional/east{ pixel_x = 23; req_access = null; req_access_txt = "150" @@ -759,7 +756,7 @@ /area/awaymission/moonoutpost19/syndicate) "bU" = ( /obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ pixel_y = 23; req_access = null; req_access_txt = "150" @@ -867,7 +864,8 @@ /obj/machinery/airalarm/unlocked{ pixel_y = 23; req_access = null; - req_access_txt = "150" + req_access_txt = "150"; + dir = 1 }, /turf/open/floor/iron{ dir = 8; @@ -972,9 +970,7 @@ }, /area/awaymission/moonoutpost19/syndicate) "cm" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -1308,8 +1304,7 @@ }, /area/awaymission/moonoutpost19/syndicate) "cS" = ( -/obj/machinery/airalarm{ - dir = 8; +/obj/machinery/airalarm/directional/east{ pixel_x = 23; req_access = null; req_access_txt = "150" @@ -1484,8 +1479,7 @@ /area/awaymission/moonoutpost19/syndicate) "dh" = ( /obj/structure/chair/wood, -/obj/machinery/airalarm{ - dir = 4; +/obj/machinery/airalarm/directional/west{ pixel_x = -23; req_access = null; req_access_txt = "150" @@ -1497,9 +1491,7 @@ }, /area/awaymission/moonoutpost19/syndicate) "di" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" @@ -1512,8 +1504,7 @@ }, /area/awaymission/moonoutpost19/syndicate) "dk" = ( -/obj/machinery/airalarm{ - dir = 8; +/obj/machinery/airalarm/directional/east{ pixel_x = 23; req_access = null; req_access_txt = "150" @@ -1996,7 +1987,7 @@ /obj/machinery/light/broken/directional/north, /obj/structure/alien/weeds, /obj/structure/alien/egg/burst, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Xenobiology Containment North"; network = list("mo19x") }, @@ -2112,9 +2103,8 @@ /area/awaymission/moonoutpost19/research) "eM" = ( /obj/machinery/light/small/broken/directional/west, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Xenobiology"; - dir = 4; network = list("mo19","mo19r") }, /turf/open/floor/iron/white/side{ @@ -2193,7 +2183,8 @@ }, /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /obj/structure/cable, /turf/open/floor/plating{ @@ -2297,7 +2288,8 @@ /obj/machinery/light/small/broken/directional/north, /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /obj/structure/alien/weeds, /turf/open/floor/iron{ @@ -2524,9 +2516,8 @@ "fK" = ( /obj/machinery/light/broken/directional/east, /obj/structure/alien/weeds, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Xenobiology Containment East"; - dir = 8; network = list("mo19x") }, /turf/open/floor/engine, @@ -2600,7 +2591,8 @@ }, /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -2702,7 +2694,7 @@ /turf/open/floor/engine, /area/awaymission/moonoutpost19/research) "gf" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /turf/open/floor/plating{ heat_capacity = 1e+006 }, @@ -3097,7 +3089,7 @@ "gS" = ( /obj/machinery/light/broken/directional/east, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -3175,9 +3167,8 @@ "hb" = ( /obj/machinery/light/broken/directional/south, /obj/structure/alien/weeds, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Xenobiology Containment South"; - dir = 1; network = list("mo19x") }, /turf/open/floor/engine, @@ -3326,7 +3317,8 @@ /obj/machinery/light/small/broken/directional/north, /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, /turf/open/floor/iron/cafeteria{ @@ -3443,9 +3435,8 @@ /obj/structure/noticeboard/directional/south, /obj/machinery/light/small/broken/directional/south, /obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Research Division"; - dir = 1; network = list("mo19","mo19r") }, /obj/effect/turf_decal/tile/purple{ @@ -3475,7 +3466,7 @@ /obj/item/storage/firstaid/regular, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -3951,9 +3942,8 @@ "iH" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/south, /obj/machinery/light/small/broken/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Research Director's Office"; - dir = 1; network = list("mo19","mo19r") }, /turf/open/floor/iron/cafeteria{ @@ -4066,9 +4056,7 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -4408,7 +4396,8 @@ "jI" = ( /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /turf/open/floor/iron{ heat_capacity = 1e+006 @@ -4523,7 +4512,8 @@ /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/unlocked{ pixel_y = 23; - req_access = null + req_access = null; + dir = 1 }, /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -4703,7 +4693,7 @@ /obj/machinery/light/directional/east, /obj/machinery/processor, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -4742,9 +4732,8 @@ "kw" = ( /obj/machinery/light/small/directional/south, /obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Arrivals North"; - dir = 1; network = list("mo19") }, /obj/effect/turf_decal/tile/blue{ @@ -5035,9 +5024,8 @@ /area/awaymission/moonoutpost19/arrivals) "lb" = ( /obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Kitchen"; - dir = 8; network = list("mo19") }, /turf/open/floor/iron/cafeteria{ @@ -5131,12 +5119,10 @@ }, /area/awaymission/moonoutpost19/arrivals) "lo" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/chair/wood, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -5182,9 +5168,8 @@ "ls" = ( /obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Bar"; - dir = 8; network = list("mo19") }, /obj/effect/turf_decal/tile/bar, @@ -5372,9 +5357,7 @@ /turf/open/floor/iron/dark, /area/awaymission/moonoutpost19/arrivals) "lU" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/remains/human{ desc = "They look like human remains. The skeleton is sitting upright with its legs tucked in and hands still holding onto its arms." }, @@ -5459,7 +5442,7 @@ }, /area/awaymission/moonoutpost19/arrivals) "mj" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -5555,9 +5538,7 @@ /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) "mu" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/window/reinforced{ dir = 1 }, @@ -5702,15 +5683,12 @@ }, /area/awaymission/moonoutpost19/arrivals) "mN" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/noticeboard/directional/east, /obj/item/paper/fluff/awaymissions/moonoutpost19/welcome, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Arrivals South"; - dir = 8; network = list("mo19") }, /obj/effect/turf_decal/stripes/line{ @@ -5782,11 +5760,9 @@ }, /area/awaymission/moonoutpost19/arrivals) "mT" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -5812,9 +5788,7 @@ /turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) "mY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/structure/window/reinforced, /turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) @@ -5926,9 +5900,7 @@ }, /area/awaymission/moonoutpost19/arrivals) "np" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating/asteroid{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" @@ -5939,9 +5911,8 @@ desc = "Your instincts say you shouldn't be following these."; icon_state = "ltrails_2" }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Dormitories"; - dir = 4; network = list("mo19") }, /turf/open/floor/iron{ @@ -6021,7 +5992,7 @@ /area/awaymission/moonoutpost19/arrivals) "ny" = ( /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23; req_access = null }, @@ -6286,9 +6257,7 @@ }, /area/awaymission/moonoutpost19/arrivals) "nY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/generic, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron{ diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm index 5cd7d082fa1..94262d5a72a 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/RandomZLevels/research.dmm @@ -3842,7 +3842,7 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior) "iF" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/research/interior/security) @@ -5173,7 +5173,7 @@ /turf/open/floor/wood, /area/awaymission/research/interior/dorm) "lW" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/research/interior/medbay) @@ -5191,7 +5191,7 @@ /turf/open/floor/iron, /area/awaymission/research/interior/dorm) "lZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/research/interior/escapepods) @@ -39751,7 +39751,7 @@ jC jV iX jn -qo +wa jF jF kc @@ -41293,7 +41293,7 @@ jk jY iX jn -kU +zs kR jF kc @@ -42066,7 +42066,7 @@ kt kE jF jF -qo +wa jF jF jF @@ -47702,7 +47702,7 @@ fW fW ho hF -eo +ux dT dF do @@ -48730,7 +48730,7 @@ fX fW ho hF -eo +ux dT dF do diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index 3dc85fbc1b0..efdd033dfe9 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -347,9 +347,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -601,9 +599,7 @@ /area/awaymission/snowdin/post/kitchen) "ce" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -633,9 +629,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "cn" = ( @@ -690,9 +684,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "ct" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -1157,7 +1149,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/research) "dl" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/research) @@ -1266,7 +1258,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/dorm) "dG" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dH" = ( @@ -1513,9 +1505,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/messhall) "eu" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/table, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -2237,9 +2227,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post) "gv" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) @@ -2639,7 +2627,7 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/outside) "hC" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, @@ -3229,9 +3217,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "iP" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4; @@ -3750,9 +3736,7 @@ }, /area/awaymission/snowdin/post/messhall) "kd" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/messhall) "kf" = ( @@ -3987,9 +3971,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post) "kI" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post) "kJ" = ( @@ -4130,9 +4112,7 @@ }, /area/awaymission/snowdin/post/garage) "lb" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ piping_layer = 4; pixel_x = 5; @@ -5142,7 +5122,7 @@ /area/awaymission/snowdin/post/hydro) "nv" = ( /obj/machinery/vending/hydroseeds, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "nw" = ( @@ -5524,7 +5504,7 @@ /turf/closed/wall/rust, /area/awaymission/snowdin/post/cavern2) "oy" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) @@ -5719,7 +5699,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "oT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "oU" = ( @@ -5767,9 +5747,7 @@ /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/cavern2) "pf" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/cavern2) "pg" = ( @@ -5885,9 +5863,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/machinery/power/smes/engineering, /obj/structure/cable, /turf/open/floor/plating, @@ -5922,9 +5898,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, @@ -6023,7 +5997,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post) "pP" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -6107,9 +6081,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "qa" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ @@ -6321,7 +6293,7 @@ /area/awaymission/snowdin/post/engineering) "qD" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/awaymission/snowdin/post/custodials) @@ -7771,7 +7743,7 @@ /area/awaymission/snowdin/post/cavern1) "vC" = ( /obj/structure/rack, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vD" = ( @@ -8170,9 +8142,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_dock) "wU" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/structure/sign/warning/docking{ pixel_y = 32 }, @@ -8615,9 +8585,7 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "yj" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /obj/structure/closet/crate, /obj/item/relic, /obj/item/relic, @@ -8880,7 +8848,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_dock) "yT" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -9489,9 +9457,7 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "AM" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "AN" = ( @@ -10061,9 +10027,7 @@ /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "CN" = ( -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -10221,9 +10185,7 @@ /area/awaymission/snowdin/cave) "De" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built{ - dir = 8 - }, +/obj/machinery/light/built/directional/west, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "Df" = ( @@ -10394,7 +10356,7 @@ }, /area/awaymission/snowdin/cave) "Dx" = ( -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "Dy" = ( @@ -10746,9 +10708,7 @@ "Em" = ( /obj/effect/turf_decal/weather/snow, /obj/effect/turf_decal/bot_white, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/iron/dark/snowdin, /area/awaymission/snowdin/cave) "En" = ( @@ -10844,9 +10804,7 @@ }, /area/awaymission/snowdin/cave) "Ez" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "EA" = ( @@ -11035,7 +10993,7 @@ /area/awaymission/snowdin/cave) "ES" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built, +/obj/machinery/light/built/directional/south, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "ET" = ( @@ -11692,9 +11650,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "Hs" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/robotics) "Ht" = ( @@ -11926,7 +11882,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -11952,7 +11908,7 @@ /area/awaymission/snowdin/post/mining_dock) "Ii" = ( /obj/machinery/mech_bay_recharge_port, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/awaymission/snowdin/post/mining_main/mechbay) "Ij" = ( @@ -11984,7 +11940,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "Ip" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "Iq" = ( @@ -12001,9 +11957,7 @@ /turf/open/floor/iron/grimy, /area/awaymission/snowdin/post/mining_main) "It" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Iu" = ( @@ -12144,7 +12098,7 @@ }, /area/awaymission/snowdin/post/mining_main) "IU" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/structure/table, /obj/item/storage/box/donkpockets, /obj/effect/turf_decal/tile/neutral, @@ -12182,7 +12136,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "IY" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -12632,9 +12586,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_dock) "Ki" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Kj" = ( @@ -12691,9 +12643,7 @@ /turf/open/floor/plating/elevatorshaft, /area/awaymission/snowdin/post/mining_main) "Ko" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -12747,9 +12697,7 @@ /turf/open/floor/plating/elevatorshaft, /area/awaymission/snowdin/post/mining_dock) "Ku" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -12795,7 +12743,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_dock) "KE" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -12845,7 +12793,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "KL" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -12988,7 +12936,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_dock) "Lf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/research) @@ -13053,7 +13001,7 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "Lz" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) @@ -13120,9 +13068,7 @@ "Mg" = ( /obj/structure/table, /obj/item/clothing/neck/stethoscope, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -13157,9 +13103,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/button/door/directional/north{ id = "snowdingarageunder"; @@ -13318,7 +13262,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post) "Ob" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -13470,7 +13414,7 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "OW" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /obj/item/crowbar, /obj/structure/noticeboard/directional/south, /obj/item/paper/fluff/awaymissions/snowdin/secnotice, @@ -13649,7 +13593,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "Rj" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, @@ -13804,7 +13748,7 @@ }, /area/awaymission/snowdin/cave) "SE" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, @@ -13814,7 +13758,7 @@ /turf/open/floor/engine/o2, /area/awaymission/snowdin/post/engineering) "SI" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) @@ -13906,7 +13850,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main) "TR" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, /turf/open/floor/plating, @@ -13990,12 +13934,12 @@ }, /area/awaymission/snowdin/post/cavern1) "UB" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/awaymission/snowdin/post/engineering) "UH" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) @@ -14064,7 +14008,7 @@ /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/post/mining_dock) "VJ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) @@ -14100,7 +14044,7 @@ /area/awaymission/snowdin/cave) "Wa" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "We" = ( @@ -14138,7 +14082,7 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Wv" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) @@ -14219,7 +14163,7 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/messhall) "WX" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) @@ -14237,7 +14181,7 @@ /area/awaymission/snowdin/post/broken_shuttle) "Xk" = ( /obj/structure/closet/wardrobe/robotics_black, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/snowdin/post/mining_main/robotics) @@ -14349,7 +14293,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "Yh" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) @@ -14367,7 +14311,7 @@ /obj/machinery/light/small/directional/north, /obj/effect/spawner/random/structure/crate_abandoned, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "Yx" = ( @@ -14406,9 +14350,7 @@ /area/awaymission/snowdin/post/cavern2) "YP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -14442,7 +14384,7 @@ }, /area/awaymission/snowdin/post/mining_main/mechbay) "Zd" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, @@ -45728,7 +45670,7 @@ tI tI aj vQ -ww +TH wy TH vQ @@ -45986,7 +45928,7 @@ tI aj wv vQ -VS +uo vQ vQ wA diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 136d38bc95d..1a0e7de8b2b 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -554,9 +554,8 @@ /area/awaymission/undergroundoutpost45/central) "bw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Arrivals"; - dir = 8; network = list("uo45") }, /obj/effect/turf_decal/tile/neutral, @@ -970,7 +969,8 @@ "cx" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 @@ -1026,7 +1026,8 @@ "cA" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 @@ -1567,7 +1568,8 @@ /area/awaymission/undergroundoutpost45/central) "dE" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/light/blacklight/directional/north, /obj/structure/disposalpipe/segment{ @@ -2272,7 +2274,7 @@ }, /area/awaymission/undergroundoutpost45/central) "eR" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -2452,9 +2454,8 @@ }, /area/awaymission/undergroundoutpost45/central) "fg" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Hydroponics"; - dir = 1; network = list("uo45") }, /obj/machinery/power/apc/highcap/fifteen_k{ @@ -2577,7 +2578,7 @@ "fs" = ( /obj/machinery/light/blacklight/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/effect/turf_decal/tile/green, @@ -2838,9 +2839,8 @@ /area/awaymission/undergroundoutpost45/central) "fU" = ( /obj/machinery/firealarm/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Central Hallway"; - dir = 1; network = list("uo45") }, /turf/open/floor/iron{ @@ -3238,10 +3238,11 @@ /area/awaymission/undergroundoutpost45/research) "gY" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Research Lab"; network = list("uo45","uo45r") }, @@ -3307,7 +3308,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "hg" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /turf/open/floor/iron{ @@ -3425,12 +3426,11 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "hs" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Kitchen"; - dir = 8; network = list("uo45") }, /obj/structure/table, @@ -3750,7 +3750,7 @@ /area/awaymission/undergroundoutpost45/gateway) "ic" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, @@ -4302,9 +4302,8 @@ dir = 4; pixel_x = -23 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Gateway Chamber"; - dir = 4; network = list("uo45","uo45r") }, /obj/effect/decal/cleanable/dirt, @@ -4480,9 +4479,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "jz" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Bar"; - dir = 8; network = list("uo45") }, /obj/structure/table/reinforced, @@ -4577,7 +4575,7 @@ /area/awaymission/undergroundoutpost45/gateway) "jK" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -4899,7 +4897,8 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "ko" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron{ heat_capacity = 1e+006 @@ -5130,7 +5129,8 @@ /area/awaymission/undergroundoutpost45/gateway) "kJ" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -5238,7 +5238,8 @@ /area/awaymission/undergroundoutpost45/research) "kT" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -5499,12 +5500,13 @@ /area/awaymission/undergroundoutpost45/gateway) "lr" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Gateway Ready Room"; network = list("uo45","uo45r") }, @@ -5597,9 +5599,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Research Division West"; - dir = 1; network = list("uo45","uo45r") }, /obj/effect/turf_decal/tile/purple, @@ -5755,9 +5756,8 @@ /area/awaymission/undergroundoutpost45/research) "lN" = ( /obj/machinery/firealarm/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Research Division East"; - dir = 1; network = list("uo45","uo45r") }, /obj/effect/turf_decal/tile/purple, @@ -5890,7 +5890,7 @@ /area/awaymission/undergroundoutpost45/engineering) "lY" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Engineering Secure Storage"; network = list("uo45") }, @@ -6081,7 +6081,8 @@ "ms" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/carpet{ heat_capacity = 1e+006 @@ -6104,7 +6105,8 @@ "mv" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/structure/chair/wood{ dir = 8 @@ -7067,7 +7069,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Dormitories"; network = list("uo45") }, @@ -7111,7 +7113,8 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "oh" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7571,7 +7574,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "oT" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/machinery/light/small/directional/east, @@ -8257,7 +8260,8 @@ "qp" = ( /obj/structure/table, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/item/hand_labeler, @@ -8291,7 +8295,7 @@ "qt" = ( /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /turf/open/floor/carpet{ @@ -8307,7 +8311,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "qv" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /turf/open/floor/carpet{ @@ -8464,7 +8468,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ dir = 10 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Atmospherics"; network = list("uo45") }, @@ -9054,9 +9058,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Engineering Hallway"; - dir = 4; network = list("uo45") }, /turf/open/floor/iron{ @@ -9137,7 +9140,8 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "rT" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -10867,7 +10871,8 @@ dir = 4 }, /obj/machinery/airalarm/all_access{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ @@ -11320,9 +11325,8 @@ pixel_y = -32 }, /obj/machinery/vending/engivend, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Engineering Foyer"; - dir = 1; network = list("uo45") }, /obj/effect/decal/cleanable/dirt, @@ -11903,7 +11907,7 @@ "wU" = ( /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -12200,7 +12204,7 @@ "xp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 23 }, /obj/effect/decal/cleanable/dirt, @@ -12276,9 +12280,8 @@ dir = 4 }, /obj/machinery/light/blacklight/directional/west, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Mining"; - dir = 4; network = list("uo45") }, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm index 35d9dc54e56..4988a8ead78 100644 --- a/_maps/RandomZLevels/wildwest.dmm +++ b/_maps/RandomZLevels/wildwest.dmm @@ -43517,7 +43517,7 @@ bu bF bF bF -Gw +cj bF bF bD diff --git a/_maps/RandomZLevels/zombieprison.dmm b/_maps/RandomZLevels/zombieprison.dmm index 0cc5061758d..107dfdf9b66 100644 --- a/_maps/RandomZLevels/zombieprison.dmm +++ b/_maps/RandomZLevels/zombieprison.dmm @@ -276,7 +276,7 @@ /obj/effect/turf_decal/tile/blue/half{ dir = 1 }, -/obj/machinery/defibrillator_mount/loaded/directional/north, +/obj/machinery/defibrillator_mount/directional/north, /turf/open/floor/iron, /area/awaymission/prison/med) "br" = ( @@ -6234,7 +6234,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/obj/machinery/defibrillator_mount/loaded/directional/north, +/obj/machinery/defibrillator_mount/directional/north, /turf/open/floor/iron, /area/awaymission/prison/med) "FB" = ( diff --git a/_maps/map_files/Blueshift/BlueShift.dmm b/_maps/map_files/Blueshift/BlueShift.dmm index f2f4c72d9b3..fddfdb7fc3c 100644 --- a/_maps/map_files/Blueshift/BlueShift.dmm +++ b/_maps/map_files/Blueshift/BlueShift.dmm @@ -301,7 +301,7 @@ /turf/open/floor/iron/dark, /area/service/hydroponics) "acx" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/airalarm/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, @@ -337,7 +337,7 @@ "acM" = ( /obj/machinery/computer/security, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) @@ -1284,7 +1284,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/starboard) @@ -1533,7 +1533,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/misc_lab) @@ -3617,7 +3617,7 @@ /turf/open/floor/carpet, /area/service/library) "aCg" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 4 @@ -3868,7 +3868,7 @@ /area/science/test_area) "aDQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "aDX" = ( @@ -4832,7 +4832,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/item/storage/box/bodybags{ pixel_x = 4; pixel_y = 12 @@ -5021,7 +5021,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/ai_monitored/security/armory) "aMF" = ( @@ -6442,7 +6442,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) @@ -6717,7 +6717,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 9 @@ -7128,7 +7128,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/library/private) "bdp" = ( @@ -8462,7 +8462,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/science/robotics/lab) @@ -8921,7 +8921,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/purple, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/white, @@ -9742,7 +9742,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Medbay - Morgue"; dir = 1; @@ -10445,7 +10445,7 @@ "bCj" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/side{ dir = 9 @@ -10634,7 +10634,7 @@ /obj/effect/turf_decal/bot, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/cable_coil, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/solars/starboard/fore) @@ -10743,7 +10743,7 @@ "bEx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 10 }, @@ -11135,7 +11135,7 @@ "bHJ" = ( /obj/structure/ladder, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/maintenance/starboard) @@ -13185,7 +13185,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/red, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -14206,7 +14206,7 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 10 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/engine) @@ -14380,7 +14380,7 @@ }, /obj/item/storage/photo_album/captain, /obj/item/camera, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/light_switch/directional/south{ pixel_y = -37 @@ -14783,7 +14783,7 @@ /area/space/nearstation) "cjO" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 9 @@ -14800,7 +14800,7 @@ /turf/open/floor/wood, /area/service/bar/atrium) "cjT" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 4 @@ -15282,7 +15282,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, @@ -15949,7 +15949,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/treatment_center) "crP" = ( @@ -16160,7 +16160,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/chemistry) "ctt" = ( @@ -17976,7 +17976,7 @@ /area/engineering/main) "cFk" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/science/research/abandoned) "cFl" = ( @@ -18910,7 +18910,7 @@ "cML" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Courtroom - Holding area"; dir = 8 @@ -19192,7 +19192,7 @@ name = "Library Desk"; req_access_txt = "37" }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, @@ -19720,7 +19720,7 @@ /area/science/mixing) "cTI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Law Office"; dir = 8 @@ -21576,7 +21576,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/checkpoint/escape) "dge" = ( @@ -22324,7 +22324,7 @@ name = "Private Channel"; pixel_x = -26 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -22393,7 +22393,7 @@ /area/hallway/primary/central) "dlM" = ( /obj/effect/turf_decal/delivery/white, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -23117,7 +23117,7 @@ /area/maintenance/starboard) "drE" = ( /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/firealarm/directional/west, /obj/machinery/light/directional/north, @@ -24149,7 +24149,7 @@ /obj/structure/table/reinforced, /obj/item/folder/red, /obj/item/restraints/handcuffs, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/camera{ c_tag = "Security Post - Science"; @@ -28365,7 +28365,7 @@ /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/service/chapel) @@ -28580,7 +28580,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron, @@ -31224,7 +31224,7 @@ /area/hallway/primary/port) "eyu" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -31450,7 +31450,7 @@ /obj/effect/turf_decal/stripes/end{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ @@ -32052,7 +32052,7 @@ /turf/open/floor/iron/dark/side, /area/commons/fitness) "eGg" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/robotics/mechbay) @@ -33672,7 +33672,7 @@ /area/maintenance/department/science) "eRc" = ( /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/aft) @@ -34036,7 +34036,7 @@ /area/engineering/atmos) "eUG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -34686,7 +34686,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/science) "eZc" = ( @@ -39209,7 +39209,7 @@ /obj/structure/table, /obj/item/stack/license_plates/empty/fifty, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/side{ dir = 1 @@ -40241,7 +40241,7 @@ /area/maintenance/department/medical) "fQF" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/commons/locker) @@ -40255,7 +40255,7 @@ /obj/item/book/manual/wiki/security_space_law, /obj/item/radio, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -41788,7 +41788,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central/aft) @@ -42722,7 +42722,7 @@ /area/security/execution/transfer) "gkP" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -44697,7 +44697,7 @@ "gzK" = ( /obj/structure/table, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera{ c_tag = "Kitchen Diner Port"; dir = 10; @@ -44938,7 +44938,7 @@ /area/hallway/primary/upper) "gBw" = ( /obj/structure/table/glass, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -45023,7 +45023,7 @@ "gCc" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -45063,7 +45063,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/green, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, @@ -46550,7 +46550,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/cryo) "gNP" = ( @@ -46707,7 +46707,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/hydroponics/garden/abandoned) "gOx" = ( @@ -47236,7 +47236,7 @@ "gSK" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/break_room) "gSL" = ( @@ -48290,7 +48290,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/upper) @@ -48710,7 +48710,7 @@ /area/hallway/secondary/entry) "hdC" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 9 }, @@ -49571,7 +49571,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49665,7 +49665,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/red, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/status_display/evac/directional/north, /obj/structure/disposalpipe/segment{ @@ -51153,7 +51153,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/light/directional/north, /turf/open/floor/iron, @@ -52067,7 +52067,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 4 @@ -52188,7 +52188,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/pharmacy) "hFo" = ( @@ -52200,7 +52200,7 @@ /obj/item/electronics/airlock, /obj/item/wrench, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/main) "hFs" = ( @@ -52307,7 +52307,7 @@ /area/engineering/atmos) "hGi" = ( /obj/effect/turf_decal/stripes/white/line, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -53371,7 +53371,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/security/checkpoint) @@ -54716,7 +54716,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/central/aft) "hXt" = ( @@ -56572,7 +56572,7 @@ /turf/open/floor/iron/white, /area/medical/virology) "imc" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table, /obj/item/wrench, /obj/item/crowbar, @@ -57247,7 +57247,7 @@ /turf/open/floor/iron, /area/hallway/primary/central/fore) "irO" = ( -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/hallway/primary/central/fore) @@ -57472,7 +57472,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, @@ -58362,7 +58362,7 @@ /turf/open/floor/iron, /area/hallway/primary/port) "iAA" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) @@ -58731,7 +58731,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, @@ -58810,7 +58810,7 @@ /area/maintenance/port) "iDP" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/science/misc_lab/range) "iDY" = ( @@ -59353,7 +59353,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -59977,7 +59977,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/starboard) "iMo" = ( @@ -60300,7 +60300,7 @@ /area/maintenance/solars/port/fore) "iOU" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 9 }, @@ -60369,7 +60369,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -60723,7 +60723,7 @@ /area/hallway/secondary/exit/departure_lounge) "iSG" = ( /obj/effect/spawner/random/structure/crate, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore/upper) @@ -62262,7 +62262,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "jdN" = ( @@ -62503,7 +62503,7 @@ /obj/structure/table/wood, /obj/item/canvas/drawingtablet, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/service/library/artgallery) "jfF" = ( @@ -62609,7 +62609,7 @@ /area/command/heads_quarters/hos) "jgP" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/secondary) "jgW" = ( @@ -63426,7 +63426,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "job" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -64089,7 +64089,7 @@ /turf/open/floor/iron/dark, /area/engineering/storage) "jtC" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, @@ -65460,7 +65460,7 @@ /obj/item/paper_bin, /obj/item/pen/blue, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/security/checkpoint/customs) @@ -68180,7 +68180,7 @@ /turf/open/floor/wood, /area/service/cafeteria) "jXK" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) @@ -68658,7 +68658,7 @@ "kbz" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, @@ -68684,7 +68684,7 @@ pixel_x = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Security - Killcam"; dir = 9 @@ -69328,7 +69328,7 @@ /obj/structure/table, /obj/item/clipboard, /obj/item/wrench, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -73544,7 +73544,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/science/storage) "kMy" = ( @@ -73770,7 +73770,7 @@ /area/command/bridge) "kOy" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/science/explab) "kOA" = ( @@ -74372,7 +74372,7 @@ name = "Skull trophy"; pixel_y = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/wood, /area/blueshield) @@ -74676,7 +74676,7 @@ /area/medical/treatment_center) "kVS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/service/bar/atrium) "kVT" = ( @@ -75896,7 +75896,7 @@ /area/space/nearstation) "lfk" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, @@ -76877,7 +76877,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 6 }, @@ -77979,7 +77979,7 @@ "lvl" = ( /obj/effect/turf_decal/bot, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/warehouse/upper) "lvm" = ( @@ -78540,7 +78540,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/science/cytology) "lzQ" = ( @@ -78801,7 +78801,7 @@ /area/security/prison/workout) "lBB" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera{ c_tag = "Atmospherics - Gear Room"; dir = 10; @@ -79475,7 +79475,7 @@ /area/command/heads_quarters/rd) "lFH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 10 }, @@ -79978,7 +79978,7 @@ }, /area/engineering/main) "lJv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/light_switch/directional/south{ pixel_y = -37 @@ -80133,7 +80133,7 @@ /area/command/gateway) "lKW" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, @@ -80221,7 +80221,7 @@ "lLx" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/space_hut/observatory) "lLB" = ( @@ -81447,7 +81447,7 @@ /area/medical/psychology) "lUH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /turf/open/floor/plating, @@ -82326,7 +82326,7 @@ pixel_y = 6 }, /obj/item/hand_labeler, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/command/teleporter) @@ -83459,7 +83459,7 @@ /area/security/brig) "mlG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera{ c_tag = " Prison - Central"; dir = 1; @@ -83795,7 +83795,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron/dark/side{ dir = 4 }, @@ -84687,7 +84687,7 @@ /area/security/checkpoint/escape) "muu" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Security - Lower Hallway"; dir = 9 @@ -86258,7 +86258,7 @@ /turf/open/floor/iron/dark, /area/engineering/storage_shared) "mEQ" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ dir = 9 @@ -86538,7 +86538,7 @@ /area/commons/dorms) "mGw" = ( /obj/structure/lattice/catwalk, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/openspace, /area/maintenance/starboard/central) @@ -87123,7 +87123,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 10 @@ -88179,7 +88179,7 @@ /area/security/detectives_office) "mVa" = ( /obj/structure/closet/crate/bin, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/commons/fitness) @@ -88659,7 +88659,7 @@ /turf/open/openspace, /area/cargo/qm) "mZs" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/exit) @@ -89861,7 +89861,7 @@ /area/maintenance/aft) "nid" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/transfer) "nie" = ( @@ -90964,7 +90964,7 @@ /area/commons/locker) "nqb" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "nqi" = ( @@ -91339,7 +91339,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 @@ -91536,7 +91536,7 @@ /obj/structure/rack, /obj/item/storage/toolbox/electrical, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "nvo" = ( @@ -92241,7 +92241,7 @@ /area/command/meeting_room/council) "nzT" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 9 }, @@ -93180,7 +93180,7 @@ /turf/open/floor/iron, /area/hallway/primary/starboard) "nGv" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -93530,7 +93530,7 @@ icon_state = "plant-21" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/engineering/storage/tech) "nJz" = ( @@ -93591,7 +93591,7 @@ /area/maintenance/department/science) "nKc" = ( /obj/structure/filingcabinet, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/robotics) @@ -94004,7 +94004,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/theater) "nNB" = ( @@ -94261,7 +94261,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/airalarm/directional/north{ pixel_y = 33 @@ -95646,7 +95646,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Engineering - Starboard Engineering Hub Deck 2"; dir = 6; @@ -95787,7 +95787,7 @@ network = list("ss13","medbay") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 5 }, @@ -96223,7 +96223,7 @@ /obj/item/stock_parts/cell/high, /obj/item/stock_parts/cell/high, /obj/item/stock_parts/cell/high, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/gateway) @@ -97176,7 +97176,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 10 }, @@ -97587,7 +97587,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "orr" = ( @@ -98945,7 +98945,7 @@ pixel_y = 17 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/service/bar) "oCw" = ( @@ -99323,7 +99323,7 @@ /obj/item/weldingtool, /obj/item/clothing/head/welding, /obj/item/clothing/head/welding, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva/upper) @@ -99377,7 +99377,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/security) @@ -99390,7 +99390,7 @@ /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/department/electrical) "oFk" = ( @@ -99855,7 +99855,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/cargo/office) @@ -99888,7 +99888,7 @@ /obj/item/wrench, /obj/item/storage/toolbox/mechanical, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/atmospherics_engine) "oJx" = ( @@ -99908,7 +99908,7 @@ /area/maintenance/department/engine) "oJJ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/side{ dir = 4 }, @@ -103350,7 +103350,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/cargo/storage) "plv" = ( @@ -103525,7 +103525,7 @@ /area/command/heads_quarters/captain) "pmM" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port/central) "pmR" = ( @@ -104152,7 +104152,7 @@ /area/hallway/primary/port) "prC" = ( /obj/structure/chair/sofa/bench/left, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/dark/side{ dir = 5 }, @@ -104538,7 +104538,7 @@ /area/security/interrogation) "put" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark/side, /area/security/processing) "puu" = ( @@ -104604,7 +104604,7 @@ /turf/open/floor/iron, /area/maintenance/port) "pva" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, @@ -105265,7 +105265,7 @@ /obj/structure/chair/sofa/corp{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/carpet/blue, /area/medical/exam_room) @@ -106578,7 +106578,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/primary/aft) "pIZ" = ( @@ -107811,7 +107811,7 @@ /turf/open/floor/plating, /area/maintenance/department/science) "pTq" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -108628,7 +108628,7 @@ "qaX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Engineering - Starboard Engineering Hub Deck 1"; dir = 6; @@ -109040,7 +109040,7 @@ /turf/open/floor/iron, /area/hallway/secondary/command) "qfD" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 10 @@ -110667,7 +110667,7 @@ /obj/item/seeds/tomato, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/prison/garden) "qrB" = ( @@ -111362,7 +111362,7 @@ /turf/open/floor/iron, /area/engineering/atmospherics_engine) "qxs" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/maintenance/department/science) @@ -111609,7 +111609,7 @@ "qzu" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/service/library/printer) "qzx" = ( @@ -111786,7 +111786,7 @@ color = "#DE3A3A"; dir = 8 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron/white/corner, /area/hallway/secondary/exit/departure_lounge) "qBk" = ( @@ -112114,7 +112114,7 @@ dir = 1 }, /obj/effect/landmark/start/scientist, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet/purple, /area/science/breakroom) @@ -112430,7 +112430,7 @@ /area/hallway/secondary/construction/engineering) "qFx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, @@ -112741,7 +112741,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/red, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, @@ -113016,7 +113016,7 @@ /obj/effect/turf_decal/tile/purple, /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/service/salon) "qKE" = ( @@ -115310,7 +115310,7 @@ /area/security/courtroom) "rdg" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 4 }, @@ -116343,7 +116343,7 @@ "rkC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/service/abandoned_gambling_den) "rkE" = ( @@ -116736,7 +116736,7 @@ /obj/structure/table/wood/fancy/royalblack, /obj/item/clipboard, /obj/item/toy/figure/qm, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/carpet/royalblack, /area/cargo/qm) @@ -117114,7 +117114,7 @@ /obj/machinery/computer/med_data/laptop, /obj/structure/table/reinforced, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/medical/surgery) @@ -119990,7 +119990,7 @@ /turf/open/floor/iron, /area/cargo/sorting) "rNv" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -120655,7 +120655,7 @@ "rSh" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery/white, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/airalarm/directional/west, /obj/structure/disposalpipe/trunk{ @@ -123990,7 +123990,7 @@ /obj/machinery/space_heater, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/department/science/central) "src" = ( @@ -125312,7 +125312,7 @@ /area/hallway/secondary/construction/engineering) "sBp" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/engineering/lobby) "sBs" = ( @@ -126216,7 +126216,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -126226,7 +126226,7 @@ }, /area/security/range) "sJh" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark/side{ dir = 4 @@ -126829,7 +126829,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Engineering - Starboard Engineering Hub Deck 3"; dir = 6; @@ -126970,7 +126970,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) "sOh" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/camera{ c_tag = "Primary Restroom"; @@ -127672,12 +127672,12 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/janitor) "sTI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 6 }, @@ -127732,7 +127732,7 @@ network = list("ss13","prison") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/security/prison/rec) "sTT" = ( @@ -127945,7 +127945,7 @@ "sVP" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/tcommsat/computer) @@ -128510,7 +128510,7 @@ /area/space) "sZp" = ( /obj/machinery/photocopier, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet/lone, /area/service/library/abandoned) @@ -129599,7 +129599,7 @@ /obj/effect/turf_decal/tile/blue/half{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/light/directional/west, /turf/open/floor/iron/white/side{ @@ -134487,7 +134487,7 @@ /area/engineering/engine_smes) "tSu" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, @@ -134618,7 +134618,7 @@ /turf/open/floor/iron, /area/commons/dorms) "tTD" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore) @@ -135103,7 +135103,7 @@ /area/security/checkpoint/escape) "tXr" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 9 }, @@ -135290,7 +135290,7 @@ /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) @@ -135356,7 +135356,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/photocopier, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, @@ -136127,7 +136127,7 @@ "ufq" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/hallway/primary/central/fore) "ufr" = ( @@ -136269,7 +136269,7 @@ /area/ai_monitored/aisat/exterior) "ugn" = ( /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/camera{ c_tag = "Central Hallway - Cafe"; @@ -137021,7 +137021,7 @@ /area/engineering/storage/tcomms) "ulj" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/commons/storage/primary) @@ -137258,7 +137258,7 @@ /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, /obj/item/radio, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) @@ -137486,7 +137486,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/lab) @@ -137639,7 +137639,7 @@ /area/medical/surgery/room_b) "upe" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/primary/upper) "uph" = ( @@ -139364,7 +139364,7 @@ "uBh" = ( /obj/effect/turf_decal/tile/red, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/side{ dir = 4 }, @@ -139907,7 +139907,7 @@ "uFb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Engineering - Port Engineering Hub Deck 1"; dir = 6; @@ -140742,7 +140742,7 @@ "uMi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/service/abandoned_gambling_den/secondary) "uMj" = ( @@ -140971,7 +140971,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) "uOl" = ( @@ -141827,7 +141827,7 @@ /obj/item/folder, /obj/item/pen, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/service/hydroponics/upper) @@ -142357,7 +142357,7 @@ /area/maintenance/fore/upper) "uZg" = ( /obj/machinery/light/directional/north, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/stairs/right{ dir = 4 }, @@ -142939,7 +142939,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/engineering/break_room) "veq" = ( @@ -144197,7 +144197,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 4 @@ -144638,7 +144638,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "vpW" = ( @@ -145442,7 +145442,7 @@ "vvW" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -147134,7 +147134,7 @@ pixel_x = -3; pixel_y = -3 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) @@ -149021,7 +149021,7 @@ pixel_y = 2 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, @@ -150794,7 +150794,7 @@ /area/engineering/atmos/upper) "wog" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 6 }, @@ -151918,7 +151918,7 @@ /area/commons/fitness) "wwE" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft) @@ -153166,7 +153166,7 @@ /area/tcommsat/server) "wGa" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 4 @@ -153914,7 +153914,7 @@ "wLA" = ( /obj/effect/turf_decal/stripes, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine, /area/maintenance/radshelter) "wLP" = ( @@ -154543,7 +154543,7 @@ /area/science) "wQa" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/port/fore) "wQh" = ( @@ -155239,7 +155239,7 @@ /area/ai_monitored/command/storage/eva/upper) "wVa" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ dir = 5 }, @@ -155305,7 +155305,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/prison/mess) "wVN" = ( @@ -156372,7 +156372,7 @@ /area/hallway/primary/upper) "xeL" = ( /obj/structure/table, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/item/paper_bin{ pixel_y = 3 }, @@ -158655,7 +158655,7 @@ /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/security/detectives_office/private_investigators_office) @@ -158965,7 +158965,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/brig) "xyG" = ( @@ -161299,7 +161299,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light/directional/west, /obj/structure/cable, /turf/open/floor/iron, @@ -161942,7 +161942,7 @@ /area/security/brig) "xUG" = ( /obj/structure/chair/sofa/bench, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/side{ dir = 1 @@ -162029,7 +162029,7 @@ "xVf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Engineering - Port Engineering Hub Deck 3"; dir = 6; @@ -162281,7 +162281,7 @@ /area/security/checkpoint/science/research) "xXM" = ( /obj/structure/table/glass, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/service) @@ -163769,7 +163769,7 @@ pixel_y = 3 }, /obj/item/tank/jetpack/carbondioxide, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/engineering/storage) diff --git a/_maps/map_files/CTF/downtown.dmm b/_maps/map_files/CTF/downtown.dmm index 29e02d99187..1abdf89b2a4 100644 --- a/_maps/map_files/CTF/downtown.dmm +++ b/_maps/map_files/CTF/downtown.dmm @@ -302,8 +302,7 @@ /turf/open/floor/carpet/blue, /area/ctf) "go" = ( -/obj/structure/chair/stool/bar{ - dir = 4; +/obj/structure/chair/stool/bar/directional/east{ item_chair = null; resistance_flags = 64 }, @@ -386,8 +385,7 @@ /turf/closed/wall/mineral/iron, /area/ctf) "hU" = ( -/obj/structure/chair/stool/bar{ - dir = 8; +/obj/structure/chair/stool/bar/directional/west{ item_chair = null; resistance_flags = 64 }, @@ -862,8 +860,7 @@ /area/ctf) "qJ" = ( /obj/effect/turf_decal/siding/wood/corner, -/obj/structure/chair/stool/bar{ - dir = 8; +/obj/structure/chair/stool/bar/directional/west{ item_chair = null; resistance_flags = 64 }, @@ -1623,9 +1620,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/bar, -/obj/structure/chair/stool/bar{ - dir = 1 - }, +/obj/structure/chair/stool/bar/directional/south, /turf/open/floor/iron, /area/ctf) "DE" = ( @@ -3688,9 +3683,9 @@ xs td Bh ql -go +hU ql -go +hU QC td mB @@ -3840,9 +3835,9 @@ BH Am Ug ql -go +hU ql -go +hU QC Am Ad @@ -4185,7 +4180,7 @@ dO sZ Dm ql -go +hU td qT yX diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index c9ff1cc9b2c..f72c2cf3379 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -309,7 +309,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) "abz" = ( @@ -738,7 +738,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "adi" = ( @@ -2081,7 +2081,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/customs) "aml" = ( @@ -2144,7 +2144,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/checkpoint) "amW" = ( @@ -3329,7 +3329,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/maintenance/disposal) "auP" = ( @@ -3751,7 +3751,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/maintenance/port/fore) "ayV" = ( @@ -3870,7 +3870,7 @@ /area/commons/storage/tools) "aAb" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron{ dir = 1; icon_state = "chapel" @@ -4282,7 +4282,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/primary/fore) "aFi" = ( @@ -4769,7 +4769,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "aIy" = ( @@ -5221,7 +5221,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/supply) "aLU" = ( @@ -5672,7 +5672,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "aPA" = ( @@ -7991,7 +7991,7 @@ /area/medical/surgery) "boH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/command/meeting_room/council) "boZ" = ( @@ -8537,7 +8537,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/hallway/primary/port) "buz" = ( @@ -8753,7 +8753,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/execution/transfer) "bwb" = ( @@ -9401,7 +9401,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10404,7 +10404,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/detectives_office) "bJk" = ( @@ -10830,7 +10830,7 @@ "bMz" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/tcommsat/computer) "bMA" = ( @@ -12379,7 +12379,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/warden) "bTi" = ( @@ -14154,7 +14154,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/ai_monitored/security/armory) "cbL" = ( @@ -14626,7 +14626,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) "cex" = ( @@ -15732,7 +15732,7 @@ "cjP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/central/secondary) "cjQ" = ( @@ -16279,7 +16279,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) "cnv" = ( @@ -16521,7 +16521,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/range) "coO" = ( @@ -16712,7 +16712,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "cqj" = ( @@ -17387,7 +17387,7 @@ /obj/item/restraints/handcuffs, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/starboard) "cuI" = ( @@ -18544,7 +18544,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -19388,7 +19388,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/medical/storage) "cPU" = ( @@ -19517,7 +19517,7 @@ /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/department/electrical) "cQv" = ( @@ -21298,7 +21298,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/landmark/start/depsec/science, /obj/machinery/button/door/directional/west{ id = "scidoor"; @@ -21838,7 +21838,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/medical) "cZL" = ( @@ -22195,7 +22195,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/pharmacy) "dbh" = ( @@ -22455,7 +22455,7 @@ /obj/item/reagent_containers/dropper{ pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/science/xenobiology) "dcv" = ( @@ -24325,7 +24325,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/psychology) "dkK" = ( @@ -24756,7 +24756,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/science/robotics/mechbay) "dnf" = ( @@ -25396,7 +25396,7 @@ /turf/open/floor/iron, /area/engineering/supermatter/room) "dqj" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/item/kirbyplants/random, /obj/structure/disposalpipe/segment, @@ -25520,7 +25520,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -26092,7 +26092,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/medbay/central) "dtJ" = ( @@ -26984,7 +26984,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/medical/surgery) "dyJ" = ( @@ -27035,7 +27035,7 @@ "dyP" = ( /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/secondary/construction) "dyQ" = ( @@ -27482,7 +27482,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/surgery/room_b) "dBs" = ( @@ -27781,7 +27781,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "dDd" = ( @@ -28587,7 +28587,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/science/server) "dFY" = ( @@ -28597,7 +28597,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/science/robotics/lab) "dFZ" = ( @@ -28994,7 +28994,7 @@ /area/maintenance/port) "dId" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/security/detectives_office/private_investigators_office) "dIe" = ( @@ -29033,7 +29033,7 @@ "dIE" = ( /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/science/storage) "dIF" = ( @@ -29244,7 +29244,7 @@ /obj/structure/table, /obj/structure/bedsheetbin, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/medical/morgue) "dJc" = ( @@ -30366,7 +30366,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/port/aft) "dPM" = ( @@ -30458,7 +30458,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/customs/auxiliary) "dPX" = ( @@ -31227,7 +31227,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "dTI" = ( @@ -32716,7 +32716,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "eco" = ( @@ -33473,7 +33473,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/escape) "efv" = ( @@ -34384,7 +34384,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/qm) "epU" = ( @@ -35331,7 +35331,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -35372,7 +35372,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table/reinforced, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/rods/fifty, @@ -36200,7 +36200,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/service/theater) "eVj" = ( @@ -36797,7 +36797,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/starboard/aft) "fcB" = ( @@ -36980,7 +36980,7 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/science/misc_lab/range) "ffH" = ( @@ -38273,7 +38273,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/commons/locker) "fAz" = ( @@ -38845,7 +38845,7 @@ /turf/open/floor/iron, /area/commons/locker) "fJI" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -39534,7 +39534,7 @@ /obj/item/clothing/gloves/color/fyellow, /obj/item/storage/toolbox/electrical, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/service/abandoned_gambling_den) "fXn" = ( @@ -40552,7 +40552,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/toilet/restrooms) "gnq" = ( @@ -40830,7 +40830,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/office) "gqE" = ( @@ -41087,7 +41087,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/hangover, /obj/structure/disposalpipe/segment{ dir = 4 @@ -41129,7 +41129,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -41348,7 +41348,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -43294,7 +43294,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark, /area/engineering/transit_tube) @@ -43722,7 +43722,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/security/interrogation) "hia" = ( @@ -43978,7 +43978,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos/upper) @@ -45230,7 +45230,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) @@ -46263,7 +46263,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/treatment_center) "hSv" = ( @@ -47759,7 +47759,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/office) "ilu" = ( @@ -47881,7 +47881,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/cargo/sorting) "imZ" = ( @@ -48103,7 +48103,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/bar) "ioU" = ( @@ -48292,7 +48292,7 @@ "itq" = ( /obj/effect/landmark/event_spawn, /obj/structure/chair/comfy, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -49435,7 +49435,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/cargo/storage) "iMT" = ( @@ -49472,7 +49472,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/miningoffice) "iNt" = ( @@ -50386,7 +50386,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/bar/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) "jdv" = ( @@ -50658,7 +50658,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/primary/starboard) "jir" = ( @@ -51047,7 +51047,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) "jpQ" = ( @@ -51275,7 +51275,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/construction/mining/aux_base) "jtm" = ( @@ -52417,7 +52417,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/virology) "jLq" = ( @@ -55804,7 +55804,7 @@ /obj/item/grown/log, /obj/item/grown/log, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/service/chapel/office) "kHF" = ( @@ -55986,7 +55986,7 @@ /area/commons/fitness/recreation) "kJW" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/command/corporate_showroom) "kKi" = ( @@ -56134,7 +56134,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/experi_scanner, /obj/item/experi_scanner{ pixel_x = 4 @@ -56729,7 +56729,7 @@ /area/commons/fitness/recreation) "kVK" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/service/theater/abandoned) "kWe" = ( @@ -57878,7 +57878,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) "lmD" = ( @@ -58596,7 +58596,7 @@ /area/service/library) "lxv" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood{ icon_state = "wood-broken7" }, @@ -59985,7 +59985,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/gateway) "lRk" = ( @@ -61938,7 +61938,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/aft) "msG" = ( @@ -64522,7 +64522,7 @@ "nfK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -65669,7 +65669,7 @@ /obj/item/stack/cable_coil, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/storage/primary) "ntL" = ( @@ -66231,7 +66231,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -68226,7 +68226,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port) "ogs" = ( @@ -69408,7 +69408,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/fore) "oxN" = ( @@ -70152,7 +70152,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/mixing) @@ -70334,7 +70334,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tech) "oLs" = ( @@ -70343,7 +70343,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -70803,7 +70803,7 @@ "oSl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/commons/vacant_room/office) "oSm" = ( @@ -71294,7 +71294,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics/garden/abandoned) "oZg" = ( @@ -71381,7 +71381,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) "paR" = ( @@ -71436,7 +71436,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/primary/central/aft) "pbj" = ( @@ -74302,7 +74302,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/command/bridge) "pXm" = ( @@ -74331,7 +74331,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/depsec/engineering, /obj/machinery/button/door/directional/north{ id = "engdoor"; @@ -74629,7 +74629,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/aft) "qcV" = ( @@ -74902,7 +74902,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/grimy, /area/command/heads_quarters/captain/private) "qfP" = ( @@ -75278,7 +75278,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/gravity_generator) "qkq" = ( @@ -77333,7 +77333,7 @@ /area/command/heads_quarters/cmo) "qOi" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/engineering/supermatter/room) "qOo" = ( @@ -77479,7 +77479,7 @@ "qPR" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/service/electronic_marketing_den) "qPW" = ( @@ -79643,7 +79643,7 @@ /obj/item/kirbyplants/dead, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/heads_quarters/rd) "rAZ" = ( @@ -79890,7 +79890,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/prison) "rEw" = ( @@ -80015,7 +80015,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "rGe" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/green{ @@ -80752,7 +80752,7 @@ "rRd" = ( /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/kitchen) "rRj" = ( @@ -81036,7 +81036,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/security/brig) "rWh" = ( @@ -81465,7 +81465,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/hallway/primary/aft) "sdN" = ( @@ -82057,7 +82057,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/primary/central/fore) "sms" = ( @@ -82110,7 +82110,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/lawoffice) "snm" = ( @@ -83046,7 +83046,7 @@ name = "service camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/service/bar/atrium) "szL" = ( @@ -83969,7 +83969,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/chemistry) "sLw" = ( @@ -84339,7 +84339,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/science/research) "sTu" = ( @@ -84600,7 +84600,7 @@ /area/cargo/warehouse) "sXI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/command/heads_quarters/captain) "sXL" = ( @@ -84866,7 +84866,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) "tci" = ( @@ -85035,7 +85035,7 @@ name = "command camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/grimy, /area/command/heads_quarters/hop) "tfT" = ( @@ -85865,7 +85865,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -85955,7 +85955,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/fore) "tuZ" = ( @@ -86016,7 +86016,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "txh" = ( @@ -86478,7 +86478,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/vacant_room/commissary) "tEe" = ( @@ -87105,7 +87105,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/engineering/main) "tLs" = ( @@ -87354,7 +87354,7 @@ /obj/item/tank/jetpack/carbondioxide, /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/engineering/storage) "tPv" = ( @@ -87446,7 +87446,7 @@ /area/maintenance/aft) "tRE" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "tRM" = ( @@ -89001,7 +89001,7 @@ /turf/open/floor/iron/dark, /area/security/interrogation) "uqk" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -90914,7 +90914,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) "uRm" = ( @@ -92208,7 +92208,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) "vlp" = ( @@ -93443,7 +93443,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/service/janitor) "vFN" = ( @@ -94297,7 +94297,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "vSw" = ( @@ -95083,7 +95083,7 @@ /obj/item/hand_tele, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/teleporter) "wer" = ( @@ -97083,7 +97083,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/warehouse) "wIR" = ( @@ -97422,7 +97422,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "wOH" = ( @@ -98829,7 +98829,7 @@ "xiH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/commons/toilet/auxiliary) "xiK" = ( @@ -99693,7 +99693,7 @@ /area/medical/chemistry) "xvm" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/library) "xvn" = ( @@ -99747,7 +99747,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/aft) "xwx" = ( @@ -100487,7 +100487,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/secondary/service) "xJd" = ( @@ -100548,7 +100548,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/aft) "xJI" = ( @@ -102101,7 +102101,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -102260,7 +102260,7 @@ /area/service/library/abandoned) "yjc" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/science/research/abandoned) "yjg" = ( @@ -102483,7 +102483,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/fitness/recreation) diff --git a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm b/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm index f133ef1b3f0..655b8eeb580 100644 --- a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm @@ -279,7 +279,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) "abz" = ( @@ -808,7 +808,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "adi" = ( @@ -1828,7 +1828,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -2075,7 +2075,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/customs) "aml" = ( @@ -2138,7 +2138,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/checkpoint) "amy" = ( @@ -3266,7 +3266,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/maintenance/disposal) "auP" = ( @@ -3661,7 +3661,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/maintenance/port/fore) "ayV" = ( @@ -4172,7 +4172,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/aft) "aEn" = ( @@ -4242,7 +4242,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/primary/fore) "aFi" = ( @@ -4720,7 +4720,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "aIy" = ( @@ -5114,7 +5114,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/supply) "aLU" = ( @@ -5478,7 +5478,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "aPA" = ( @@ -6160,7 +6160,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/science/research) "aXI" = ( @@ -7911,7 +7911,7 @@ /area/medical/surgery) "boH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/command/meeting_room/council) "bpa" = ( @@ -8487,7 +8487,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/hallway/primary/port) "buz" = ( @@ -8679,7 +8679,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/execution/transfer) "bwb" = ( @@ -10332,7 +10332,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/detectives_office) "bJk" = ( @@ -10856,7 +10856,7 @@ "bMz" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/tcommsat/computer) "bMA" = ( @@ -12234,7 +12234,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/security/warden) "bTi" = ( @@ -14047,7 +14047,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/item/melee/hammer, /obj/item/melee/hammer, /obj/item/melee/hammer, @@ -14658,7 +14658,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) "ceD" = ( @@ -15811,7 +15811,7 @@ "cjP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/central/secondary) "cjQ" = ( @@ -16371,7 +16371,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) "cnv" = ( @@ -16675,7 +16675,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/range) "coO" = ( @@ -16873,7 +16873,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "cqc" = ( @@ -17212,7 +17212,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -17599,7 +17599,7 @@ /obj/item/restraints/handcuffs, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/starboard) "cuH" = ( @@ -19739,7 +19739,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/medical/storage) "cPE" = ( @@ -19864,7 +19864,7 @@ /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/department/electrical) "cQv" = ( @@ -21610,7 +21610,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/landmark/start/depsec/science, /obj/machinery/button/door/directional/west{ id = "scidoor"; @@ -22188,7 +22188,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/medical) "cZL" = ( @@ -22572,7 +22572,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/pharmacy) "dbh" = ( @@ -22818,7 +22818,7 @@ /obj/item/reagent_containers/dropper{ pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/science/xenobiology) "dcv" = ( @@ -23722,7 +23722,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/experi_scanner, /obj/item/experi_scanner{ pixel_x = 4 @@ -25066,7 +25066,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/psychology) "dkK" = ( @@ -25237,7 +25237,7 @@ /turf/open/floor/iron/dark, /area/science/genetics) "dlt" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -25605,7 +25605,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/science/robotics/mechbay) "dnf" = ( @@ -26302,7 +26302,7 @@ /turf/open/floor/iron, /area/engineering/supermatter/room) "dqj" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/item/kirbyplants/random, /obj/structure/disposalpipe/segment, @@ -27087,7 +27087,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/medbay/central) "dtN" = ( @@ -28066,7 +28066,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/medical/surgery) "dyJ" = ( @@ -28117,7 +28117,7 @@ "dyP" = ( /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/secondary/construction) "dyQ" = ( @@ -28616,7 +28616,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/surgery/room_b) "dBs" = ( @@ -28946,7 +28946,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "dDd" = ( @@ -29774,7 +29774,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/science/server) "dFY" = ( @@ -29784,7 +29784,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/science/robotics/lab) "dGc" = ( @@ -30146,7 +30146,7 @@ /area/maintenance/port/fore) "dId" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/security/detectives_office/private_investigators_office) "dIe" = ( @@ -30200,7 +30200,7 @@ "dIE" = ( /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/science/storage) "dIF" = ( @@ -30414,7 +30414,7 @@ /obj/structure/table, /obj/structure/bedsheetbin, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/medical/morgue) "dJc" = ( @@ -31757,7 +31757,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/port/aft) "dPM" = ( @@ -31859,7 +31859,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/customs/auxiliary) "dPX" = ( @@ -32662,7 +32662,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "dTI" = ( @@ -34291,7 +34291,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "eco" = ( @@ -35132,7 +35132,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/escape) "efv" = ( @@ -36050,7 +36050,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/qm) "epU" = ( @@ -36170,7 +36170,7 @@ /area/engineering/storage/tech) "esf" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/tile/purple{ @@ -37145,7 +37145,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -37186,7 +37186,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table/reinforced, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/rods/fifty, @@ -38038,7 +38038,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/service/theater) "eUM" = ( @@ -38241,7 +38241,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -38519,7 +38519,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) "fbe" = ( @@ -38642,7 +38642,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/starboard/aft) "fcB" = ( @@ -39877,7 +39877,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/fore) "fwB" = ( @@ -39910,7 +39910,7 @@ /obj/item/hand_tele, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/teleporter) "fxp" = ( @@ -40095,7 +40095,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/commons/locker) "fAz" = ( @@ -40610,7 +40610,7 @@ /turf/open/floor/wood, /area/service/abandoned_gambling_den) "fJI" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -41335,7 +41335,7 @@ /obj/item/clothing/gloves/color/fyellow, /obj/item/storage/toolbox/electrical, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/service/abandoned_gambling_den) "fXn" = ( @@ -42226,7 +42226,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/toilet/restrooms) "gnq" = ( @@ -42326,7 +42326,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42512,7 +42512,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/office) "gqB" = ( @@ -42619,7 +42619,7 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/science/misc_lab/range) "gsq" = ( @@ -43860,7 +43860,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port) "gPA" = ( @@ -44625,7 +44625,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark, /area/engineering/transit_tube) @@ -44906,7 +44906,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/security/interrogation) "hhS" = ( @@ -45116,7 +45116,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos/upper) @@ -45361,7 +45361,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -46171,7 +46171,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) @@ -47134,7 +47134,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/treatment_center) "hSx" = ( @@ -48553,7 +48553,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/office) "ilu" = ( @@ -48662,7 +48662,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/cargo/sorting) "imL" = ( @@ -48901,7 +48901,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/bar) "ioU" = ( @@ -49212,7 +49212,7 @@ "itq" = ( /obj/effect/landmark/event_spawn, /obj/structure/chair/comfy, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -49954,7 +49954,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "iFA" = ( @@ -50456,7 +50456,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/miningoffice) "iNP" = ( @@ -51289,7 +51289,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/bar/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) "jdj" = ( @@ -52199,7 +52199,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/construction/mining/aux_base) "jtm" = ( @@ -53438,7 +53438,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/virology) "jLq" = ( @@ -54221,7 +54221,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/aft) "jZK" = ( @@ -56485,7 +56485,7 @@ /obj/item/grown/log, /obj/item/grown/log, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/service/chapel/office) "kHB" = ( @@ -57442,7 +57442,7 @@ /area/cargo/office) "kVK" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/service/theater/abandoned) "kVN" = ( @@ -58748,7 +58748,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) "lmt" = ( @@ -59466,7 +59466,7 @@ /area/service/library) "lxv" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood{ icon_state = "wood-broken7" }, @@ -59758,7 +59758,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -60634,7 +60634,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/gateway) "lRk" = ( @@ -61023,7 +61023,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/depsec/engineering, /obj/machinery/button/door/directional/north{ id = "engdoor"; @@ -62726,7 +62726,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/primary/starboard) "mtX" = ( @@ -63144,7 +63144,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/hangover, /obj/structure/disposalpipe/segment{ dir = 4 @@ -64446,7 +64446,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/primary/central/fore) "mXX" = ( @@ -65125,7 +65125,7 @@ "nfK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -66090,7 +66090,7 @@ /obj/item/stack/cable_coil, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/storage/primary) "ntL" = ( @@ -69904,7 +69904,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/fore) "oxI" = ( @@ -70742,7 +70742,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/mixing) @@ -70978,7 +70978,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tech) "oLs" = ( @@ -70987,7 +70987,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -71503,7 +71503,7 @@ "oSl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/commons/vacant_room/office) "oSm" = ( @@ -71959,7 +71959,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics/garden/abandoned) "oZa" = ( @@ -72040,7 +72040,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) "paR" = ( @@ -72073,7 +72073,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/hallway/primary/central/aft) "pbj" = ( @@ -75011,7 +75011,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/command/bridge) "pXL" = ( @@ -75583,7 +75583,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/grimy, /area/command/heads_quarters/captain/private) "qfP" = ( @@ -75756,7 +75756,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/brig) "qiB" = ( @@ -75939,7 +75939,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/gravity_generator) "qkc" = ( @@ -78137,7 +78137,7 @@ "qPR" = ( /obj/item/kirbyplants/random, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/service/electronic_marketing_den) "qPZ" = ( @@ -79609,7 +79609,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/prison) "rjU" = ( @@ -80086,7 +80086,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/aft) "rtI" = ( @@ -80591,7 +80591,7 @@ /obj/item/kirbyplants/dead, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/heads_quarters/rd) "rAL" = ( @@ -80882,7 +80882,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "rGe" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/green{ @@ -81335,7 +81335,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -81598,7 +81598,7 @@ "rRd" = ( /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/kitchen) "rRk" = ( @@ -81918,7 +81918,7 @@ /area/medical/medbay/central) "rVN" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron{ dir = 1; icon_state = "chapel" @@ -82480,7 +82480,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central/aft) "sfh" = ( @@ -82971,7 +82971,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/lawoffice) "snm" = ( @@ -83810,7 +83810,7 @@ name = "service camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/service/bar/atrium) "szL" = ( @@ -84778,7 +84778,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/chemistry) "sLw" = ( @@ -85498,7 +85498,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/cargo/storage) "sWw" = ( @@ -85627,7 +85627,7 @@ /area/ai_monitored/aisat/exterior) "sXI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/command/heads_quarters/captain) "sXL" = ( @@ -85970,7 +85970,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) "tce" = ( @@ -86133,7 +86133,7 @@ name = "command camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/grimy, /area/command/heads_quarters/hop) "tfT" = ( @@ -86969,7 +86969,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -87668,7 +87668,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/vacant_room/commissary) "tEe" = ( @@ -88288,7 +88288,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/engineering/main) "tLs" = ( @@ -88579,7 +88579,7 @@ /obj/item/tank/jetpack/carbondioxide, /obj/structure/cable, /obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/engineering/storage) "tPv" = ( @@ -88686,7 +88686,7 @@ /area/maintenance/aft) "tRE" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "tRN" = ( @@ -90493,7 +90493,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "uuh" = ( @@ -92011,7 +92011,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) "uRm" = ( @@ -92255,7 +92255,7 @@ /area/science/research/abandoned) "uUc" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/engineering/supermatter/room) "uUh" = ( @@ -93405,7 +93405,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) "vlp" = ( @@ -94610,7 +94610,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/service/janitor) "vFE" = ( @@ -95430,7 +95430,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "vSp" = ( @@ -98036,7 +98036,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/warehouse) "wIR" = ( @@ -98804,7 +98804,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/secondary/service) "wVG" = ( @@ -99535,7 +99535,7 @@ "xiH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/commons/toilet/auxiliary) "xiK" = ( @@ -100392,7 +100392,7 @@ /area/medical/medbay/central) "xvm" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/library) "xvn" = ( @@ -102582,7 +102582,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/hallway/primary/aft) "yfL" = ( @@ -102799,7 +102799,7 @@ /area/ai_monitored/aisat/exterior) "yjc" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/science/research/abandoned) "yjg" = ( @@ -102975,7 +102975,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/fitness/recreation) "yme" = ( diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 43ae416121b..0df28d79102 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -432,7 +432,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/ai_monitored/security/armory) "acw" = ( @@ -1614,7 +1614,7 @@ /turf/open/floor/iron, /area/security/courtroom) "ajM" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos/project) @@ -4453,7 +4453,7 @@ /turf/open/floor/iron/dark, /area/medical/morgue) "aGk" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "aGu" = ( @@ -5122,7 +5122,7 @@ /area/hallway/secondary/entry) "aNk" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/security/prison) "aNl" = ( @@ -6015,7 +6015,7 @@ /turf/open/floor/iron/dark, /area/security/execution/transfer) "aZu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, @@ -6466,7 +6466,7 @@ /area/maintenance/port) "bed" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "bek" = ( @@ -8221,7 +8221,7 @@ /obj/item/paper_bin{ pixel_y = 6 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron/dark, @@ -10080,7 +10080,7 @@ /turf/open/floor/engine, /area/science/misc_lab) "bTq" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) @@ -10627,7 +10627,7 @@ }, /area/maintenance/starboard/aft) "caf" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/gateway) @@ -10795,7 +10795,7 @@ /area/maintenance/starboard/fore) "cbN" = ( /obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/paicard, @@ -12310,7 +12310,7 @@ /turf/open/floor/iron/dark, /area/engineering/lobby) "cxu" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12403,7 +12403,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -12519,7 +12519,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cAE" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/bed/dogbed/lia, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13089,7 +13089,7 @@ /turf/open/floor/iron/showroomfloor, /area/security/office) "cLo" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, @@ -14022,7 +14022,7 @@ /area/science/xenobiology) "dgW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/commons/locker) @@ -14198,7 +14198,7 @@ /turf/open/floor/iron, /area/engineering/main) "dmn" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/command/nuke_storage) @@ -14599,7 +14599,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/main) "dzn" = ( @@ -14848,7 +14848,7 @@ "dED" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/light/directional/west, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/central) @@ -15139,7 +15139,7 @@ /turf/open/floor/iron, /area/hallway/primary/aft) "dOw" = ( -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/commons/locker) "dOB" = ( @@ -15510,7 +15510,7 @@ /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, /obj/machinery/airalarm/directional/east, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/medical) @@ -15863,7 +15863,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "eiu" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -16100,7 +16100,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera/motion{ c_tag = "MiniSat AI Chamber North"; dir = 1; @@ -16290,7 +16290,7 @@ /turf/open/floor/plating, /area/commons/storage/art) "etA" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft) @@ -16367,7 +16367,7 @@ /turf/open/floor/plating, /area/maintenance/fore) "ewg" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16505,7 +16505,7 @@ /area/construction/mining/aux_base) "eAr" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -16572,7 +16572,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/supply) @@ -16728,7 +16728,7 @@ /area/maintenance/port/aft) "eHN" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics/garden) "eHX" = ( @@ -17113,7 +17113,7 @@ /turf/open/floor/iron, /area/security/office) "eUk" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/siding/white, /obj/item/kirbyplants/random, @@ -17144,7 +17144,7 @@ /area/cargo/miningdock) "eVj" = ( /obj/structure/filingcabinet, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/light/small/directional/west, /turf/open/floor/wood, @@ -17410,7 +17410,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/secondary/entry) "fbM" = ( @@ -17463,7 +17463,7 @@ /turf/open/floor/iron, /area/command/bridge) "fdf" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Port Solar Control"; dir = 1 @@ -17769,11 +17769,11 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/checkpoint/science) "fju" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Virology Module"; network = list("ss13","medbay") @@ -18179,7 +18179,7 @@ /area/cargo/storage) "fvc" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/sorting) @@ -19081,7 +19081,7 @@ /turf/open/floor/wood, /area/maintenance/port/fore) "fTu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Primary Hallway"; dir = 4 @@ -19105,7 +19105,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) @@ -19663,7 +19663,7 @@ /turf/open/floor/iron, /area/hallway/primary/aft) "ges" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/engineering/supermatter/room) @@ -20013,7 +20013,7 @@ pixel_x = -2; pixel_y = -1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/primary) @@ -21118,7 +21118,7 @@ /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) "gTp" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/iron/white, @@ -21403,7 +21403,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/processing) "gZC" = ( @@ -21546,7 +21546,7 @@ dir = 4 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/room_b) @@ -22418,7 +22418,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "hzM" = ( @@ -23354,7 +23354,7 @@ /obj/machinery/camera{ c_tag = "Tech Storage" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) @@ -23467,7 +23467,7 @@ /turf/open/floor/iron/white, /area/medical/medbay/lobby) "idW" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -23573,7 +23573,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light_switch/directional/north{ pixel_x = -11 }, @@ -23676,7 +23676,7 @@ /turf/open/openspace, /area/service/chapel) "iiD" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -23947,7 +23947,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "irX" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/chair, /obj/structure/cable, /turf/open/floor/iron/dark, @@ -25030,12 +25030,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) "iQM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/siding/yellow/corner{ dir = 4 @@ -25709,7 +25709,7 @@ /area/engineering/atmos) "jgZ" = ( /obj/effect/decal/cleanable/oil, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) @@ -25838,7 +25838,7 @@ /turf/open/floor/engine/vacuum, /area/engineering/atmos) "jkG" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -26170,7 +26170,7 @@ /area/command/heads_quarters/hop) "jtU" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/science/storage) @@ -26216,7 +26216,7 @@ /area/maintenance/department/medical) "jvu" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/security/prison/safe) "jvv" = ( @@ -26684,7 +26684,7 @@ /turf/open/floor/iron, /area/hallway/secondary/service) "jIe" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -26770,7 +26770,7 @@ /turf/open/floor/carpet, /area/cargo/qm) "jJE" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/tank_dispenser, /turf/open/floor/iron/white, @@ -26963,7 +26963,7 @@ /turf/open/floor/engine/vacuum, /area/science/mixing/chamber) "jPq" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) "jPE" = ( @@ -27712,7 +27712,7 @@ /area/maintenance/starboard/fore) "klP" = ( /obj/effect/turf_decal/tile/red, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/fore) "klS" = ( @@ -28034,7 +28034,7 @@ "kvi" = ( /obj/machinery/vending/tool, /obj/machinery/light/directional/east, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/engineering/lobby) @@ -28094,7 +28094,7 @@ "kwD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 }, @@ -28213,7 +28213,7 @@ /turf/open/floor/iron/dark, /area/engineering/main) "kzL" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -29055,7 +29055,7 @@ /turf/open/floor/iron, /area/cargo/storage) "kQu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -29155,7 +29155,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29285,7 +29285,7 @@ /area/engineering/atmos/project) "kYh" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -29864,7 +29864,7 @@ /turf/open/floor/iron/white, /area/medical/medbay/lobby) "lqX" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) @@ -30058,7 +30058,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/paper_bin, /obj/item/pen/blue{ pixel_y = 5 @@ -30466,7 +30466,7 @@ /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/item/reagent_containers/spray/cleaner, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -30869,7 +30869,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central/secondary) "lRX" = ( @@ -31156,7 +31156,7 @@ /area/construction) "lXV" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31401,7 +31401,7 @@ /area/engineering/supermatter) "mfO" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/service/lawoffice) @@ -32434,7 +32434,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -33162,7 +33162,7 @@ /turf/open/floor/iron/white, /area/science/xenobiology) "mZK" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/command/meeting_room) @@ -34010,7 +34010,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "nwN" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, /turf/open/floor/plating, @@ -34358,7 +34358,7 @@ /obj/item/screwdriver{ pixel_y = 10 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/red{ dir = 8 @@ -34486,7 +34486,7 @@ /turf/open/floor/iron/dark, /area/engineering/main) "nJf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) @@ -34756,7 +34756,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/server) "nPK" = ( @@ -34795,7 +34795,7 @@ /turf/open/floor/plating, /area/engineering/atmos) "nQD" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -34875,7 +34875,7 @@ /turf/open/floor/iron, /area/hallway/primary/fore) "nRA" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Aft Port Solar Control"; dir = 1 @@ -34936,7 +34936,7 @@ /obj/structure/cable, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/light/small/directional/west, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/engineering/engine_smes) "nTf" = ( @@ -35886,7 +35886,7 @@ /area/maintenance/starboard/fore) "orl" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -36122,7 +36122,7 @@ }, /area/maintenance/port/aft) "oyw" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel) @@ -36250,7 +36250,7 @@ dir = 10 }, /obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) @@ -36974,7 +36974,7 @@ dir = 1 }, /obj/machinery/duct, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/engineering/atmos) "oTX" = ( @@ -37784,7 +37784,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -37796,7 +37796,7 @@ /area/commons/toilet) "ppZ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "pqc" = ( @@ -38031,7 +38031,7 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/xenobiology) @@ -39364,7 +39364,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) @@ -39643,7 +39643,7 @@ }, /area/maintenance/department/medical) "qnS" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 4 @@ -40379,7 +40379,7 @@ /turf/open/floor/iron, /area/engineering/atmos) "qKp" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore) @@ -40395,7 +40395,7 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "qKy" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/command/teleporter) @@ -40768,7 +40768,7 @@ /area/maintenance/starboard/fore) "raT" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/iron, /area/hallway/primary/central) @@ -40936,7 +40936,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -40996,7 +40996,7 @@ /area/medical/cryo) "riS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/xeno_spawn, @@ -41181,7 +41181,7 @@ "rnk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/interrogation) "rnJ" = ( @@ -41724,7 +41724,7 @@ /obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white/smooth_large, @@ -42263,7 +42263,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/art) @@ -42317,7 +42317,7 @@ /area/command/heads_quarters/rd) "rNY" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light_switch/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) @@ -42675,7 +42675,7 @@ /turf/open/floor/glass/reinforced, /area/engineering/atmos) "rYd" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -42829,7 +42829,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/robotics/mechbay) @@ -43786,7 +43786,7 @@ /obj/item/stock_parts/scanning_module, /obj/item/stock_parts/scanning_module, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron/white/side{ dir = 10 @@ -43992,7 +43992,7 @@ /turf/open/floor/iron/dark, /area/medical/medbay/aft) "sCZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) @@ -44011,7 +44011,7 @@ /turf/open/floor/iron/smooth, /area/maintenance/starboard/fore) "sDq" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) @@ -46104,7 +46104,7 @@ "tIe" = ( /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "tIm" = ( @@ -46749,7 +46749,7 @@ /turf/open/floor/iron, /area/science/mixing) "tZP" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) @@ -46916,7 +46916,7 @@ /turf/open/floor/iron/white, /area/science/mixing) "uel" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -47322,7 +47322,7 @@ /turf/open/floor/carpet/blue, /area/medical/psychology) "umE" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47446,7 +47446,7 @@ /turf/open/floor/iron/white, /area/medical/break_room) "upj" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/commons/storage/emergency/port) @@ -47714,7 +47714,7 @@ /turf/open/floor/iron, /area/cargo/storage) "uvf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain) @@ -47900,7 +47900,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/qm) @@ -47983,7 +47983,7 @@ /turf/open/floor/iron, /area/commons/fitness) "uBY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) @@ -48086,7 +48086,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -49028,7 +49028,7 @@ /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "vfY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -49418,7 +49418,7 @@ /area/engineering/atmos) "vrW" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) "vsj" = ( @@ -49631,7 +49631,7 @@ "vyi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/service/janitor) @@ -50803,7 +50803,7 @@ /turf/open/floor/iron, /area/science/xenobiology) "vZa" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore/secondary) @@ -50819,7 +50819,7 @@ /turf/open/floor/iron/dark, /area/science/misc_lab) "vZL" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -50917,7 +50917,7 @@ /turf/open/floor/iron, /area/cargo/storage) "wbY" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/security/courtroom) @@ -51315,7 +51315,7 @@ /turf/open/floor/carpet, /area/cargo/qm) "wnj" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/security/warden) @@ -51940,7 +51940,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/hand_labeler, @@ -51994,7 +51994,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/primary/starboard) "wEX" = ( @@ -52101,7 +52101,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery) @@ -52610,7 +52610,7 @@ /area/command/teleporter) "wXI" = ( /obj/structure/bed/dogbed/ian, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 @@ -53752,7 +53752,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/auxiliary) @@ -54135,7 +54135,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "xGZ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -54424,7 +54424,7 @@ /area/service/kitchen/coldroom) "xOd" = ( /obj/structure/closet/secure_closet/injection, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -54524,7 +54524,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) @@ -54750,7 +54750,7 @@ /area/security/office) "xXG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -54973,7 +54973,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/fitness) "ycO" = ( @@ -55110,7 +55110,7 @@ }, /area/science/research) "ygn" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -55232,7 +55232,7 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/medbay/lobby) "yiW" = ( @@ -55281,7 +55281,7 @@ /area/maintenance/port/fore) "ykf" = ( /obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/brown, /obj/structure/cable, /obj/effect/turf_decal/tile/brown{ @@ -55317,7 +55317,7 @@ /turf/open/floor/iron/cafeteria, /area/command/heads_quarters/rd) "ykY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/firealarm/directional/west, /obj/structure/table, /obj/item/stack/sheet/glass/fifty, diff --git a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm b/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm index 7019ffca9c4..398e6cc99b0 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm @@ -1515,7 +1515,7 @@ /turf/open/floor/iron, /area/security/brig/upper) "aqm" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/blue/side{ dir = 1 @@ -3102,7 +3102,7 @@ /turf/open/floor/iron/dark, /area/medical/morgue) "aGk" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "aGp" = ( @@ -4457,7 +4457,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "aVj" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) @@ -5245,7 +5245,7 @@ /area/ai_monitored/turret_protected/ai_upload) "bed" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "beg" = ( @@ -11493,7 +11493,7 @@ /turf/open/floor/engine, /area/science/misc_lab) "bTq" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) @@ -12215,7 +12215,7 @@ }, /area/maintenance/starboard/aft) "caf" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/gateway) @@ -12352,7 +12352,7 @@ /obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white/smooth_large, @@ -12472,7 +12472,7 @@ /area/maintenance/port/aft) "cbN" = ( /obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/paicard, @@ -12559,7 +12559,7 @@ /turf/open/floor/iron, /area/engineering/atmos/project) "ccG" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos/project) @@ -14253,7 +14253,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -15752,7 +15752,7 @@ /area/science/xenobiology) "dgW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/commons/locker) @@ -15888,7 +15888,7 @@ /turf/open/floor/plating, /area/maintenance/aft) "dke" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/range) @@ -15938,7 +15938,7 @@ /turf/open/floor/iron, /area/engineering/main) "dmn" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/command/nuke_storage) @@ -16083,7 +16083,7 @@ /area/engineering/main) "dsF" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/xeno_spawn, @@ -16330,7 +16330,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ cell_type = /obj/item/stock_parts/cell/high }, /turf/open/floor/iron, @@ -16359,7 +16359,7 @@ /area/tcommsat/computer) "dCe" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -16728,7 +16728,7 @@ /area/engineering/atmos) "dNJ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -16762,7 +16762,7 @@ /turf/open/floor/iron, /area/hallway/primary/aft) "dOw" = ( -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/commons/locker) "dOF" = ( @@ -16922,7 +16922,7 @@ /turf/open/floor/iron/white, /area/medical/surgery) "dVr" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/newscaster/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -17070,7 +17070,7 @@ /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, /obj/machinery/airalarm/directional/east, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -17219,7 +17219,7 @@ /turf/open/floor/iron, /area/tcommsat/computer) "edP" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17536,7 +17536,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera/motion{ c_tag = "MiniSat AI Chamber North"; dir = 1; @@ -17978,7 +17978,7 @@ /turf/open/floor/wood, /area/service/library) "eCu" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -18103,7 +18103,7 @@ /area/maintenance/port/aft) "eHN" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics/garden) "eIf" = ( @@ -18722,7 +18722,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/secondary/entry) "fbY" = ( @@ -18755,7 +18755,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "fdf" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Port Solar Control"; dir = 1 @@ -19039,7 +19039,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "fju" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Virology Module"; network = list("ss13","medbay") @@ -19158,7 +19158,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -19374,7 +19374,7 @@ /obj/item/paper_bin{ pixel_y = 6 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, @@ -19398,7 +19398,7 @@ /area/cargo/storage) "fvc" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/sorting) @@ -20251,7 +20251,7 @@ /turf/open/floor/iron, /area/engineering/main) "fTu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Primary Hallway"; dir = 4 @@ -20275,7 +20275,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) @@ -20518,7 +20518,7 @@ /area/commons/vacant_room/office) "fZg" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/security/brig/upper) @@ -20742,7 +20742,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/simple/general/hidden{ dir = 4 }, @@ -20976,7 +20976,7 @@ pixel_x = -2; pixel_y = -1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/primary) @@ -21132,7 +21132,7 @@ network = list("ss13","rd"); pixel_x = 22 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -22028,7 +22028,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "gTp" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/iron/white, @@ -22247,7 +22247,7 @@ dir = 4 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/room_b) @@ -22833,7 +22833,7 @@ /turf/open/floor/iron, /area/security/brig) "hyK" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore/secondary) @@ -23705,7 +23705,7 @@ /obj/machinery/camera{ c_tag = "Tech Storage" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) @@ -23853,12 +23853,12 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "idN" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/engineering/supermatter/room) "idW" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -24168,7 +24168,7 @@ /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/item/reagent_containers/spray/cleaner, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -24301,7 +24301,7 @@ /turf/open/floor/iron, /area/hallway/secondary/service) "irX" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/chair, /obj/structure/cable, /turf/open/floor/iron/dark, @@ -24744,7 +24744,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) @@ -25100,7 +25100,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) "iRh" = ( @@ -25567,7 +25567,7 @@ /area/medical/storage) "jgZ" = ( /obj/effect/decal/cleanable/oil, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) @@ -25680,7 +25680,7 @@ /turf/open/floor/engine/vacuum, /area/engineering/atmos) "jkG" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -26038,7 +26038,7 @@ /area/command/heads_quarters/hop) "jtU" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/science/storage) @@ -26407,7 +26407,7 @@ /turf/open/floor/iron, /area/command/bridge) "jIe" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -26460,7 +26460,7 @@ /turf/open/floor/carpet, /area/cargo/qm) "jJE" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/tank_dispenser, /turf/open/floor/iron/white, @@ -26602,7 +26602,7 @@ /turf/open/floor/plating, /area/maintenance/department/medical) "jPq" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) "jPt" = ( @@ -27288,7 +27288,7 @@ "khM" = ( /obj/machinery/newscaster/directional/south, /obj/structure/bed/dogbed/lia, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/computer/security/telescreen{ name = "Solitary Monitoring"; @@ -27300,7 +27300,7 @@ /area/command/heads_quarters/hos) "khQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -27506,7 +27506,7 @@ /area/security/brig) "kmP" = ( /obj/structure/filingcabinet, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/light/small/directional/west, /turf/open/floor/wood, @@ -27805,7 +27805,7 @@ "kwD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 }, @@ -27925,7 +27925,7 @@ /turf/open/floor/iron/white, /area/medical/cryo) "kzL" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -29212,7 +29212,7 @@ /turf/open/floor/iron/white, /area/medical/medbay) "lqX" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) @@ -30210,7 +30210,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central/secondary) "lRX" = ( @@ -30473,7 +30473,7 @@ /turf/open/floor/iron, /area/security/brig) "lXL" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30507,7 +30507,7 @@ "lYg" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/light/directional/west, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/central) @@ -31094,7 +31094,7 @@ /turf/open/floor/iron, /area/commons/fitness) "mpc" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel) @@ -31389,7 +31389,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -31772,7 +31772,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -31940,7 +31940,7 @@ "mLG" = ( /obj/structure/table, /obj/item/binoculars, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/brigofficer) @@ -32182,7 +32182,7 @@ /turf/open/floor/iron/grimy, /area/security/detectives_office) "mRW" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -32438,7 +32438,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "mZK" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/command/meeting_room) @@ -32478,7 +32478,7 @@ /turf/open/floor/iron, /area/hallway/primary/starboard) "nbs" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/break_room) @@ -33593,7 +33593,7 @@ /turf/open/floor/iron, /area/commons/dorms) "nFC" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/trimline/darkblue/filled/line{ dir = 4 @@ -33721,7 +33721,7 @@ /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) "nJf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) @@ -33922,7 +33922,7 @@ }, /area/hallway/secondary/service) "nQD" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -33999,7 +33999,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "nRA" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Aft Port Solar Control"; dir = 1 @@ -34031,7 +34031,7 @@ /obj/structure/cable, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/light/small/directional/west, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/engineering/engine_smes) "nSO" = ( @@ -34397,7 +34397,7 @@ /turf/open/floor/engine, /area/engineering/supermatter/room) "ogG" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, @@ -34927,7 +34927,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36411,7 +36411,7 @@ /area/commons/toilet) "ppZ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "pqa" = ( @@ -36720,7 +36720,7 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/xenobiology) @@ -37233,7 +37233,7 @@ /turf/open/floor/plating, /area/security/brig) "pJf" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/closet/emcloset, /turf/open/floor/iron/dark, @@ -37812,7 +37812,7 @@ /turf/open/floor/plating, /area/medical/medbay) "pXN" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/siding/white, /obj/item/kirbyplants/random, @@ -38314,7 +38314,7 @@ /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) "qnw" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -38763,7 +38763,7 @@ dir = 10 }, /obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) @@ -38971,7 +38971,7 @@ /turf/open/floor/wood, /area/command/meeting_room) "qKp" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/fore) @@ -38988,7 +38988,7 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "qKy" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/command/teleporter) @@ -39685,7 +39685,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -40856,7 +40856,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/art) @@ -40896,7 +40896,7 @@ /area/command/heads_quarters/rd) "rNY" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light_switch/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) @@ -41193,7 +41193,7 @@ /turf/open/floor/plating, /area/maintenance/department/medical) "rYd" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -41310,7 +41310,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/robotics/mechbay) @@ -41372,7 +41372,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/purple/half, /turf/open/floor/iron/white/textured_edge, /area/security/checkpoint/science) @@ -41558,7 +41558,7 @@ /turf/open/floor/iron, /area/engineering/main) "shF" = ( -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/starboard) "shJ" = ( @@ -42277,12 +42277,12 @@ /turf/open/floor/iron/cafeteria, /area/service/kitchen) "sCZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) "sDq" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) @@ -42574,7 +42574,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "sMr" = ( @@ -42687,7 +42687,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/tcommsat/computer) "sOy" = ( @@ -44105,7 +44105,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "tCL" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white/side{ dir = 9 @@ -44277,7 +44277,7 @@ "tIe" = ( /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "tIQ" = ( @@ -44880,7 +44880,7 @@ /turf/open/floor/wood/parquet, /area/service/bar/atrium) "tZP" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) @@ -45060,7 +45060,7 @@ /turf/open/floor/iron/white, /area/science/mixing) "uel" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -45417,7 +45417,7 @@ /turf/open/floor/iron, /area/engineering/break_room) "umE" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45478,7 +45478,7 @@ /turf/open/floor/iron/dark, /area/security/warden) "upj" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/commons/storage/emergency/port) @@ -45648,7 +45648,7 @@ "utQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/service/janitor) @@ -45684,7 +45684,7 @@ /turf/open/floor/iron, /area/cargo/storage) "uvf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain) @@ -45946,7 +45946,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/qm) @@ -46051,7 +46051,7 @@ /turf/closed/wall/r_wall, /area/engineering/main) "uBY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) @@ -46638,7 +46638,7 @@ /turf/open/floor/iron, /area/commons/fitness) "uXM" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46786,7 +46786,7 @@ /turf/open/floor/iron/dark, /area/security/execution/education) "vcy" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47271,7 +47271,7 @@ /area/science/mixing) "vrW" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) "vsj" = ( @@ -47403,7 +47403,7 @@ }, /area/maintenance/department/medical) "vvZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, /turf/open/floor/plating, @@ -47848,7 +47848,7 @@ /area/engineering/supermatter/room) "vGP" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/iron, /area/hallway/primary/central) @@ -48140,7 +48140,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -48403,7 +48403,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "vZL" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -48418,7 +48418,7 @@ /area/hallway/primary/fore) "waa" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49515,7 +49515,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/hand_labeler, @@ -49587,7 +49587,7 @@ /area/engineering/supermatter/room) "wFH" = ( /obj/structure/bed/dogbed/ian, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 @@ -49671,7 +49671,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery) @@ -50128,7 +50128,7 @@ pixel_y = 3 }, /obj/item/stock_parts/scanning_module, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, @@ -50337,7 +50337,7 @@ /area/hallway/secondary/exit/departure_lounge) "wXA" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -50910,7 +50910,7 @@ /turf/open/floor/iron, /area/hallway/primary/fore) "xpp" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51270,12 +51270,12 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/auxiliary) "xxZ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -51553,7 +51553,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "xGZ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -51846,7 +51846,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) @@ -52208,7 +52208,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/fitness) "ycH" = ( @@ -52449,7 +52449,7 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/medbay/lobby) "yiW" = ( @@ -52502,7 +52502,7 @@ /area/maintenance/port/fore) "ykf" = ( /obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/brown, /obj/structure/cable, /obj/effect/turf_decal/tile/brown{ @@ -52570,7 +52570,7 @@ /turf/open/floor/iron, /area/hallway/secondary/service) "ykY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/firealarm/directional/west, /obj/structure/table, /obj/item/stack/sheet/glass/fifty, diff --git a/_maps/map_files/IceBoxStation/IcemoonUnderground_Above.dmm b/_maps/map_files/IceBoxStation/IcemoonUnderground_Above.dmm index 5722e0e60ac..2fcbd716a90 100644 --- a/_maps/map_files/IceBoxStation/IcemoonUnderground_Above.dmm +++ b/_maps/map_files/IceBoxStation/IcemoonUnderground_Above.dmm @@ -397,7 +397,7 @@ /area/mine/laborcamp) "by" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/mine/laborcamp) "bz" = ( @@ -1084,7 +1084,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/window/reinforced/spawner/west, /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -1329,7 +1329,7 @@ /obj/item/stack/package_wrap, /obj/item/stack/package_wrap, /obj/item/hand_labeler, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/mine/eva) @@ -1918,7 +1918,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/decal/cleanable/glass, /obj/item/shard, /obj/item/shard{ @@ -2005,7 +2005,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -2608,7 +2608,7 @@ /turf/open/floor/plating, /area/maintenance/department/medical) "lm" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) @@ -3016,7 +3016,7 @@ /turf/open/floor/plating, /area/maintenance/fore) "mV" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/service/chapel/office) @@ -3237,7 +3237,7 @@ /obj/structure/closet/crate/secure/freezer/pizza, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/smooth_large, /area/cargo/warehouse) "nU" = ( @@ -4641,7 +4641,7 @@ "sP" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/service/theater) @@ -6833,7 +6833,7 @@ /area/mine/laborcamp/security) "BM" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -6957,7 +6957,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/mine/production) @@ -7302,7 +7302,7 @@ /turf/open/floor/iron, /area/mine/laborcamp) "Do" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 @@ -7456,7 +7456,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/mine/laborcamp/security) "DX" = ( @@ -7835,7 +7835,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ dir = 4 @@ -10325,7 +10325,7 @@ /area/engineering/lobby) "Ov" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/duct, /turf/open/floor/iron/cafeteria, @@ -11025,7 +11025,7 @@ "Rk" = ( /obj/structure/table/reinforced, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/item/storage/toolbox/mechanical, /obj/item/clothing/head/welding, /turf/open/floor/iron/dark/textured_half{ @@ -12144,7 +12144,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/service/bar) "VG" = ( diff --git a/_maps/map_files/IceBoxStation/IcemoonUnderground_Above_skyrat.dmm b/_maps/map_files/IceBoxStation/IcemoonUnderground_Above_skyrat.dmm index 22d93a0261f..180c4e79c06 100644 --- a/_maps/map_files/IceBoxStation/IcemoonUnderground_Above_skyrat.dmm +++ b/_maps/map_files/IceBoxStation/IcemoonUnderground_Above_skyrat.dmm @@ -473,7 +473,7 @@ /area/mine/laborcamp) "by" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/mine/laborcamp) "bz" = ( @@ -1362,7 +1362,7 @@ /turf/open/floor/stone, /area/service/bar) "eg" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/mine/living_quarters) @@ -1475,7 +1475,7 @@ /turf/open/floor/wood/parquet, /area/service/bar/atrium) "ew" = ( -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ cell_type = /obj/item/stock_parts/cell/high }, /obj/structure/cable, @@ -1901,7 +1901,7 @@ "fQ" = ( /obj/structure/table/reinforced, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/item/storage/toolbox/mechanical, /obj/item/clothing/head/welding, /turf/open/floor/iron/dark/textured_half{ @@ -2828,7 +2828,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -3607,7 +3607,7 @@ "kU" = ( /obj/structure/table/reinforced, /obj/item/taperecorder, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/courtroom) @@ -3731,7 +3731,7 @@ /turf/open/floor/grass, /area/security/prison) "lm" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) @@ -6234,7 +6234,7 @@ "sP" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/service/theater) @@ -7720,7 +7720,7 @@ /obj/item/stack/package_wrap, /obj/item/stack/package_wrap, /obj/item/hand_labeler, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/mine/eva) @@ -8983,7 +8983,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/mine/production) @@ -9015,7 +9015,7 @@ /turf/open/floor/iron/white, /area/security/prison) "Bv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/darkblue/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9113,7 +9113,7 @@ /area/security/prison) "BM" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -9821,7 +9821,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/mine/laborcamp/security) "DX" = ( @@ -9987,7 +9987,7 @@ /turf/open/floor/iron/smooth, /area/icemoon/underground/explored) "Ey" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/service/chapel/office) @@ -10340,7 +10340,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11881,7 +11881,7 @@ /obj/structure/closet/crate/secure/freezer/pizza, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/smooth_large, /area/cargo/warehouse) "Kv" = ( @@ -13233,7 +13233,7 @@ /area/security/prison/visit) "Ov" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/duct, /turf/open/floor/iron/cafeteria, @@ -14141,7 +14141,7 @@ /turf/open/floor/iron/white, /area/security/prison) "QR" = ( -/obj/machinery/power/apc/auto_name/east{ +/obj/machinery/power/apc/auto_name/directional/east{ cell_type = /obj/item/stock_parts/cell/high/plus }, /obj/structure/cable, @@ -14417,7 +14417,7 @@ /turf/open/floor/stone, /area/service/bar) "RH" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -15651,7 +15651,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/service/bar) "VE" = ( @@ -15686,7 +15686,7 @@ }, /area/maintenance/aft) "VJ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 @@ -15797,7 +15797,7 @@ /turf/open/floor/engine, /area/science/xenobiology) "Wc" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, diff --git a/_maps/map_files/IceBoxStation/IcemoonUnderground_Below.dmm b/_maps/map_files/IceBoxStation/IcemoonUnderground_Below.dmm index d36ab8371b4..ccaef7bc907 100644 --- a/_maps/map_files/IceBoxStation/IcemoonUnderground_Below.dmm +++ b/_maps/map_files/IceBoxStation/IcemoonUnderground_Below.dmm @@ -143,7 +143,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/mine/mechbay) "fF" = ( diff --git a/_maps/map_files/IceBoxStation/IcemoonUnderground_Below_skyrat.dmm b/_maps/map_files/IceBoxStation/IcemoonUnderground_Below_skyrat.dmm index c835d40852e..ba4d88e782c 100644 --- a/_maps/map_files/IceBoxStation/IcemoonUnderground_Below_skyrat.dmm +++ b/_maps/map_files/IceBoxStation/IcemoonUnderground_Below_skyrat.dmm @@ -194,7 +194,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/mine/mechbay) "gn" = ( diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 1b601fb040c..0ae9fbcf7a8 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -432,7 +432,7 @@ /area/security/warden) "abS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -615,7 +615,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/atmos) "acT" = ( @@ -1300,7 +1300,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) "afY" = ( @@ -1803,7 +1803,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/department/electrical) "ahR" = ( @@ -1861,7 +1861,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) "aih" = ( @@ -2814,7 +2814,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -3706,7 +3706,7 @@ /obj/item/toy/plush/moth{ name = "Big Moffer" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/medical/psychology) "aqQ" = ( @@ -3905,7 +3905,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/genetics) "arH" = ( @@ -4055,7 +4055,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -4298,7 +4298,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/server) "atz" = ( @@ -4499,7 +4499,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -4526,7 +4526,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) "auw" = ( @@ -5049,7 +5049,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine/telecomms, /area/tcommsat/server) "axC" = ( @@ -5060,7 +5060,7 @@ /area/maintenance/starboard/fore) "axD" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/recharge_floor, /area/science/robotics/mechbay) "axF" = ( @@ -5104,7 +5104,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) "axL" = ( @@ -6303,7 +6303,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/science/mixing) "aEK" = ( @@ -7376,7 +7376,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -7631,7 +7631,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/mixing/chamber) "aMP" = ( @@ -7791,7 +7791,7 @@ dir = 8; name = "therapy waiting chair" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) @@ -8514,7 +8514,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/research) "aRr" = ( @@ -10052,7 +10052,7 @@ name = "scrubber ducky" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/storage) "aYd" = ( @@ -10690,7 +10690,7 @@ /area/science/storage) "baA" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -11869,7 +11869,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/lab) "beN" = ( @@ -11897,7 +11897,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/medical/pharmacy) "beS" = ( @@ -12955,7 +12955,7 @@ }, /obj/item/radio/intercom/directional/south, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) "bnt" = ( @@ -13745,7 +13745,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -15979,7 +15979,7 @@ /area/security/courtroom) "bIx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "bIA" = ( @@ -17289,7 +17289,7 @@ }, /obj/item/storage/backpack, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) "bSn" = ( @@ -20156,7 +20156,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/prison) "ceu" = ( @@ -20335,7 +20335,7 @@ name = "shuttle camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "cfq" = ( @@ -20626,7 +20626,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) @@ -21252,7 +21252,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/hallway/primary/aft) "ckk" = ( @@ -21403,7 +21403,7 @@ "ckY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -21826,7 +21826,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -22341,7 +22341,7 @@ "cpV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -23210,7 +23210,7 @@ /area/maintenance/port/aft) "cuK" = ( /obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/security/prison/safe) @@ -23350,7 +23350,7 @@ /obj/item/clothing/glasses/science, /obj/item/reagent_containers/dropper, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) "cvS" = ( @@ -24325,7 +24325,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/processing) "czz" = ( @@ -24672,7 +24672,7 @@ }, /obj/effect/spawner/random/contraband/armory, /obj/effect/spawner/random/maintenance/three, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) "cBD" = ( @@ -26226,7 +26226,7 @@ /obj/structure/cable, /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -26339,7 +26339,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "cNY" = ( @@ -27003,7 +27003,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "daT" = ( @@ -27266,7 +27266,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/paramedic) @@ -29843,7 +29843,7 @@ /obj/structure/reagent_dispensers/peppertank/directional/north, /obj/structure/cable, /obj/item/book/manual/wiki/detective, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/security/detectives_office) "eiS" = ( @@ -29974,7 +29974,7 @@ /obj/structure/table, /obj/item/cartridge/lawyer, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/lawoffice) "els" = ( @@ -29989,7 +29989,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/modular_computer/console/preset/cargochat/medical{ dir = 8 }, @@ -30127,7 +30127,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -31391,7 +31391,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/entry) "eLX" = ( @@ -31402,7 +31402,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/theater) "eMc" = ( @@ -31548,7 +31548,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -32675,7 +32675,7 @@ /area/service/bar) "fiH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/chapel{ dir = 1 }, @@ -32812,7 +32812,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/cargo/warehouse) "fmk" = ( @@ -33870,7 +33870,7 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/bridge) "fEB" = ( @@ -34264,7 +34264,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) "fKK" = ( @@ -34333,7 +34333,7 @@ }, /obj/structure/cable, /obj/item/clothing/gloves/color/fyellow, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/commons/storage/primary) "fMz" = ( @@ -34564,7 +34564,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/oil, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -36213,7 +36213,7 @@ /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -36249,7 +36249,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/chapel/office) "gEl" = ( @@ -38670,7 +38670,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/item/clipboard, /obj/item/storage/firstaid/regular, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/medbay/lobby) @@ -38863,7 +38863,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ @@ -40157,7 +40157,7 @@ /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/gateway) "ieu" = ( @@ -41992,7 +41992,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/locker) "iNb" = ( @@ -43455,7 +43455,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) "joR" = ( @@ -45038,7 +45038,7 @@ /obj/item/wrench, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "jUv" = ( @@ -45611,7 +45611,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/atmos) "keV" = ( @@ -46762,7 +46762,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/bar) "kyS" = ( @@ -46789,7 +46789,7 @@ dir = 4; name = "port camera" }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron/dark/corner{ dir = 8 }, @@ -47378,7 +47378,7 @@ network = list("ss13","qm") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/cargo/office) "kKk" = ( @@ -47608,7 +47608,7 @@ "kOH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/engine, /area/engineering/storage/tech) "kOP" = ( @@ -48070,7 +48070,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/engineering/main) "kVN" = ( @@ -48462,7 +48462,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -48668,7 +48668,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -50991,7 +50991,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) "mbo" = ( @@ -51908,7 +51908,7 @@ /obj/item/hand_labeler, /obj/item/reagent_containers/spray/cleaner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -52476,7 +52476,7 @@ /obj/structure/table, /obj/item/book/manual/wiki/surgery, /obj/item/razor, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/surgery) @@ -52683,7 +52683,7 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/storage) @@ -53940,7 +53940,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/brig) "nfw" = ( @@ -54224,7 +54224,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port/aft) "nmo" = ( @@ -54787,7 +54787,7 @@ /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/miningoffice) "nzw" = ( @@ -56405,7 +56405,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) "ohD" = ( @@ -56781,7 +56781,7 @@ /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -56794,7 +56794,7 @@ /obj/machinery/libraryscanner, /obj/effect/turf_decal/bot_white, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/service/library) @@ -57423,7 +57423,7 @@ c_tag = "Fore Hallway Diner"; name = "fore camera" }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/fore) "oAH" = ( @@ -57853,7 +57853,7 @@ }, /obj/structure/disposalpipe/trunk, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/qm) "oHO" = ( @@ -59997,7 +59997,7 @@ /obj/item/stamp/rd{ pixel_x = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) "pvR" = ( @@ -60881,7 +60881,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/commons/vacant_room/commissary) "pLY" = ( @@ -61176,7 +61176,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -61712,7 +61712,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, @@ -63892,7 +63892,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -64308,7 +64308,7 @@ }, /obj/machinery/light/small/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/bar/atrium) "rbt" = ( @@ -64921,7 +64921,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/teleporter) "rjm" = ( @@ -66679,7 +66679,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -67119,7 +67119,7 @@ "rZn" = ( /obj/structure/bed/dogbed/ian, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 }, @@ -68941,7 +68941,7 @@ /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/peppertank/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) "sGL" = ( @@ -70501,7 +70501,7 @@ name = "hydroponics camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/requests_console/directional/east{ department = "Hydroponics"; departmentType = 2; @@ -70674,7 +70674,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) "ttO" = ( @@ -71154,7 +71154,7 @@ /area/security/prison) "tCd" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -71295,7 +71295,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/engineering/break_room) "tER" = ( @@ -71981,7 +71981,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/office) "tRf" = ( @@ -72424,7 +72424,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/glowstick, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -72727,7 +72727,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) "udv" = ( @@ -73075,7 +73075,7 @@ /turf/open/floor/plating/asteroid/airless, /area/space) "ukv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -73219,7 +73219,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -73928,7 +73928,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/computer/operating{ dir = 1 }, @@ -75293,7 +75293,7 @@ pixel_x = 32 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/checkpoint/supply) "vhk" = ( @@ -79410,7 +79410,7 @@ pixel_y = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -79518,7 +79518,7 @@ /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain) "wOv" = ( @@ -80707,7 +80707,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/warden) "xjT" = ( @@ -80758,7 +80758,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/service/kitchen) "xkx" = ( @@ -81680,7 +81680,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/storage) "xyM" = ( @@ -81733,7 +81733,7 @@ /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/tcommsat/computer) "xzI" = ( @@ -82169,7 +82169,7 @@ c_tag = "Head of Security's Office" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) "xJo" = ( @@ -82681,7 +82681,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/fitness/recreation) "xTA" = ( diff --git a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm b/_maps/map_files/KiloStation/KiloStation_skyrat.dmm index 324ec452601..39f8f5e8f96 100644 --- a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm +++ b/_maps/map_files/KiloStation/KiloStation_skyrat.dmm @@ -501,7 +501,7 @@ /area/maintenance/space_hut/plasmaman) "abS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -778,7 +778,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/atmos) "acT" = ( @@ -1017,7 +1017,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) "adE" = ( @@ -1726,7 +1726,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) "afX" = ( @@ -2329,7 +2329,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/department/electrical) "ahR" = ( @@ -2395,7 +2395,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) "aih" = ( @@ -3764,7 +3764,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -5160,7 +5160,7 @@ /obj/item/toy/plush/moth{ name = "Big Moffer" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/medical/psychology) "aqR" = ( @@ -5399,7 +5399,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/genetics) "arH" = ( @@ -5626,7 +5626,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -5706,7 +5706,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -5782,7 +5782,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -5898,7 +5898,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/server) "atv" = ( @@ -5917,7 +5917,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/oil, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -6233,7 +6233,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -6260,7 +6260,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) "auz" = ( @@ -7080,7 +7080,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine/telecomms, /area/tcommsat/server) "axC" = ( @@ -7091,7 +7091,7 @@ /area/maintenance/starboard/fore) "axD" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/recharge_floor, /area/science/robotics/mechbay) "axE" = ( @@ -7146,7 +7146,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) "axL" = ( @@ -8543,7 +8543,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/science/mixing) "aEK" = ( @@ -9890,7 +9890,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -10202,7 +10202,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/mixing/chamber) "aMP" = ( @@ -10416,7 +10416,7 @@ dir = 8; name = "therapy waiting chair" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) @@ -10922,7 +10922,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/paramedic) @@ -11485,7 +11485,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/modular_computer/console/preset/cargochat/medical{ dir = 8 }, @@ -11807,7 +11807,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/research) "aRr" = ( @@ -13997,7 +13997,7 @@ name = "scrubber ducky" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/storage) "aYd" = ( @@ -14899,7 +14899,7 @@ /area/science/storage) "baA" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -16313,7 +16313,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/lab) "beN" = ( @@ -16376,7 +16376,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/medical/pharmacy) "beS" = ( @@ -18667,7 +18667,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -19097,7 +19097,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -21882,7 +21882,7 @@ /area/security/courtroom) "bIx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "bIA" = ( @@ -23295,7 +23295,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -24057,7 +24057,7 @@ }, /obj/item/storage/backpack, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) "bSl" = ( @@ -28027,7 +28027,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/prison) "ceu" = ( @@ -28261,7 +28261,7 @@ name = "shuttle camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "cfq" = ( @@ -28686,7 +28686,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) @@ -29658,7 +29658,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/hallway/primary/aft) "ckk" = ( @@ -29919,7 +29919,7 @@ "ckY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -30518,7 +30518,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -31190,7 +31190,7 @@ "cpV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -32515,7 +32515,7 @@ /area/medical/virology) "cuK" = ( /obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/security/prison/safe) @@ -32815,7 +32815,7 @@ /obj/item/clothing/glasses/science, /obj/item/reagent_containers/dropper, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) "cvH" = ( @@ -33891,7 +33891,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/processing) "czA" = ( @@ -34031,7 +34031,7 @@ }, /obj/effect/spawner/random/contraband/armory, /obj/effect/spawner/random/maintenance/three, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) "czZ" = ( @@ -35285,7 +35285,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/glowstick, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -36267,7 +36267,7 @@ /obj/structure/cable, /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -36424,7 +36424,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "cNX" = ( @@ -36957,7 +36957,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "daZ" = ( @@ -39164,7 +39164,7 @@ /obj/structure/reagent_dispensers/peppertank/directional/north, /obj/structure/cable, /obj/item/book/manual/wiki/detective, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/security/detectives_office) "eiS" = ( @@ -39320,7 +39320,7 @@ /obj/structure/table, /obj/item/cartridge/lawyer, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/lawoffice) "ely" = ( @@ -40422,7 +40422,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ @@ -40522,7 +40522,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/entry) "eLX" = ( @@ -40533,7 +40533,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/theater) "eMc" = ( @@ -41562,7 +41562,7 @@ /area/maintenance/starboard/aft) "fiH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/chapel{ dir = 1 }, @@ -41648,7 +41648,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/cargo/warehouse) "fmk" = ( @@ -42430,7 +42430,7 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/bridge) "fEv" = ( @@ -42846,7 +42846,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) "fLf" = ( @@ -42892,7 +42892,7 @@ }, /obj/structure/cable, /obj/item/clothing/gloves/color/fyellow, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/commons/storage/primary) "fMz" = ( @@ -44489,7 +44489,7 @@ /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -46414,7 +46414,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/item/clipboard, /obj/item/storage/firstaid/regular, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/medbay/lobby) @@ -47536,7 +47536,7 @@ /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/gateway) "ieC" = ( @@ -48564,7 +48564,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -48685,7 +48685,7 @@ }, /obj/item/radio/intercom/directional/south, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) "iEW" = ( @@ -49025,7 +49025,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/locker) "iNb" = ( @@ -50281,7 +50281,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) "joU" = ( @@ -51279,7 +51279,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/service/kitchen) "jMR" = ( @@ -51705,7 +51705,7 @@ /obj/item/wrench, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "jVg" = ( @@ -52275,7 +52275,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/atmos) "keV" = ( @@ -53187,7 +53187,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/bar) "kyS" = ( @@ -53214,7 +53214,7 @@ dir = 4; name = "port camera" }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron/dark/corner{ dir = 8 }, @@ -53517,7 +53517,7 @@ "kDH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/engine, /area/engineering/storage/tech) "kEg" = ( @@ -53820,7 +53820,7 @@ network = list("ss13","qm") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/cargo/office) "kKu" = ( @@ -54392,7 +54392,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/engineering/main) "kVN" = ( @@ -56666,7 +56666,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) "maY" = ( @@ -57378,7 +57378,7 @@ /obj/item/hand_labeler, /obj/item/reagent_containers/spray/cleaner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -57747,7 +57747,7 @@ /obj/structure/table, /obj/item/book/manual/wiki/surgery, /obj/item/razor, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/surgery) @@ -58611,7 +58611,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/chapel/office) "mUC" = ( @@ -59659,7 +59659,7 @@ /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/miningoffice) "nzw" = ( @@ -60119,7 +60119,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/fitness/recreation) "nNi" = ( @@ -60562,7 +60562,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/storage) "nVD" = ( @@ -60860,7 +60860,7 @@ /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -60981,7 +60981,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) "ohH" = ( @@ -61303,7 +61303,7 @@ /obj/machinery/libraryscanner, /obj/effect/turf_decal/bot_white, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/service/library) @@ -61909,7 +61909,7 @@ c_tag = "Fore Hallway Diner"; name = "fore camera" }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/fore) "oAH" = ( @@ -62192,7 +62192,7 @@ }, /obj/structure/disposalpipe/trunk, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/qm) "oHY" = ( @@ -64168,7 +64168,7 @@ /obj/item/stamp/rd{ pixel_x = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) "pvQ" = ( @@ -64615,7 +64615,7 @@ }, /obj/machinery/light/small/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/bar/atrium) "pEE" = ( @@ -64909,7 +64909,7 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/storage) @@ -64956,7 +64956,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/commons/vacant_room/commissary) "pLY" = ( @@ -65585,7 +65585,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, @@ -65622,7 +65622,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -67345,7 +67345,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -68180,7 +68180,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/teleporter) "riJ" = ( @@ -69505,7 +69505,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -69832,7 +69832,7 @@ "rZn" = ( /obj/structure/bed/dogbed/ian, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 }, @@ -70581,7 +70581,7 @@ c_tag = "Head of Security's Office" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) "sqr" = ( @@ -71152,7 +71152,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port/aft) "sFA" = ( @@ -71213,7 +71213,7 @@ /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/peppertank/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) "sGL" = ( @@ -72576,7 +72576,7 @@ name = "hydroponics camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/requests_console/directional/east{ department = "Hydroponics"; departmentType = 2; @@ -73205,7 +73205,7 @@ /area/security/prison) "tCd" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -73333,7 +73333,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/engineering/break_room) "tEZ" = ( @@ -74487,7 +74487,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) "udx" = ( @@ -74929,7 +74929,7 @@ /turf/open/floor/plating/asteroid/airless, /area/space) "ukv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -75662,7 +75662,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/computer/operating{ dir = 1 }, @@ -76437,7 +76437,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/brig) "uZu" = ( @@ -76914,7 +76914,7 @@ pixel_x = 32 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/checkpoint/supply) "vhk" = ( @@ -77124,7 +77124,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/office) "vlS" = ( @@ -80391,7 +80391,7 @@ pixel_y = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -80509,7 +80509,7 @@ /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain) "wOr" = ( @@ -81487,7 +81487,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/warden) "xjT" = ( @@ -82315,7 +82315,7 @@ /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/tcommsat/computer) "xzI" = ( diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 2a5bce0533a..bcad1b890e0 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -89,7 +89,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/execution/education) "aaU" = ( @@ -1853,7 +1853,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/disposal) "aoT" = ( @@ -1976,7 +1976,7 @@ /area/ai_monitored/security/armory) "apM" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) "apP" = ( @@ -2223,7 +2223,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/command/bridge) "arr" = ( @@ -2354,7 +2354,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "asK" = ( @@ -2865,7 +2865,7 @@ req_access_txt = "1" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/brig) "axr" = ( @@ -3113,7 +3113,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/fore) "aAf" = ( @@ -3423,7 +3423,7 @@ /area/security/checkpoint/engineering) "aCt" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/grimy, /area/security/detectives_office) "aCv" = ( @@ -3848,7 +3848,7 @@ /obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/closet/radiation, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) @@ -4856,7 +4856,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/construction/mining/aux_base) "aSN" = ( @@ -5049,7 +5049,7 @@ /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/courtroom) "aUH" = ( @@ -5807,7 +5807,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/security/checkpoint/customs) "bdf" = ( @@ -6121,7 +6121,7 @@ "bhf" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central) "bhq" = ( @@ -6959,7 +6959,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) "bsb" = ( @@ -7338,11 +7338,11 @@ /obj/item/cigbutt, /obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/port) "byb" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -7396,7 +7396,7 @@ network = "tcommsat" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/grimy, /area/tcommsat/computer) "bzC" = ( @@ -8734,7 +8734,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "bQn" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/storage) @@ -9135,7 +9135,7 @@ "bWb" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/commons/locker) "bWq" = ( @@ -10053,7 +10053,7 @@ "cjk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -10089,7 +10089,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery) @@ -10504,7 +10504,7 @@ /area/hallway/primary/central) "cmt" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/medbay/central) "cmx" = ( @@ -11017,7 +11017,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/landmark/start/depsec/engineering, /turf/open/floor/iron, /area/security/checkpoint/engineering) @@ -12116,7 +12116,7 @@ "cDJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/abandoned) "cDN" = ( @@ -12404,7 +12404,7 @@ "cGL" = ( /obj/structure/cable, /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -13715,7 +13715,7 @@ /area/maintenance/port) "cTU" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -14420,7 +14420,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "ddR" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_y = 6 @@ -15109,7 +15109,7 @@ /obj/item/coin/plasma, /obj/item/melee/chainofcommand, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) "dpe" = ( @@ -17171,7 +17171,7 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17550,7 +17550,7 @@ /obj/machinery/light/directional/east, /obj/item/clothing/gloves/color/fyellow, /obj/item/gps, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/primary) "efz" = ( @@ -17664,7 +17664,7 @@ "eig" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/north, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "eiC" = ( @@ -19493,7 +19493,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/fitness/recreation) @@ -19834,7 +19834,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "eSf" = ( @@ -20025,7 +20025,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/room_b) @@ -21422,7 +21422,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -21953,7 +21953,7 @@ /turf/open/floor/iron, /area/security/brig) "fCV" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/engine, /area/science/misc_lab/range) @@ -23187,7 +23187,7 @@ }, /obj/structure/cable, /obj/machinery/chem_heater/withbuffer, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/chemistry) "fYe" = ( @@ -24519,7 +24519,7 @@ "gyS" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/south, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -26862,7 +26862,7 @@ /area/medical/virology) "hpW" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -27234,7 +27234,7 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/cafeteria, /area/service/kitchen) "hyz" = ( @@ -28371,7 +28371,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/dark, @@ -29111,7 +29111,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "ijR" = ( @@ -29419,7 +29419,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "ioR" = ( @@ -29794,7 +29794,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) "itO" = ( @@ -29813,7 +29813,7 @@ /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "iud" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -30405,7 +30405,7 @@ /obj/structure/rack, /obj/item/tank/internals/emergency_oxygen, /obj/item/clothing/mask/breath, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/security/prison/safe) @@ -30565,7 +30565,7 @@ /area/maintenance/port/fore) "iKv" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "iKy" = ( @@ -32113,7 +32113,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "jpP" = ( @@ -32180,7 +32180,7 @@ /turf/open/floor/iron, /area/engineering/main) "jqU" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white, @@ -32432,7 +32432,7 @@ /turf/open/floor/plating, /area/science/mixing) "jvt" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/security/interrogation) @@ -33131,7 +33131,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "jIZ" = ( @@ -33436,7 +33436,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/commons/dorms) "jOr" = ( @@ -33623,13 +33623,13 @@ pixel_x = -1; pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/cytology) "jSm" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -33675,7 +33675,7 @@ network = list("ss13","tcomms") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) "jUt" = ( @@ -35265,7 +35265,7 @@ /area/command/gateway) "kyp" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/disk/tech_disk{ pixel_x = -6 @@ -35573,7 +35573,7 @@ /obj/structure/cable, /obj/structure/table/wood, /obj/item/clothing/mask/cigarette/pipe, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/bar) "kDJ" = ( @@ -35706,7 +35706,7 @@ /obj/item/restraints/legcuffs/beartrap, /obj/item/restraints/legcuffs/beartrap, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/service/janitor) "kHd" = ( @@ -35818,7 +35818,7 @@ /area/engineering/atmos) "kIY" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -36032,7 +36032,7 @@ /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) "kMr" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/table/wood, /obj/item/cartridge/detective{ pixel_x = 7; @@ -36120,7 +36120,7 @@ /obj/structure/table/wood, /obj/item/clothing/glasses/monocle, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/theater) "kOu" = ( @@ -36203,7 +36203,7 @@ "kRb" = ( /obj/item/cigbutt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -36365,7 +36365,7 @@ /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) "kUo" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/medical/coldroom) @@ -38197,7 +38197,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -38733,7 +38733,7 @@ /area/maintenance/starboard) "lNC" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/chair{ dir = 4 }, @@ -39022,7 +39022,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/cryo) @@ -39093,7 +39093,7 @@ /obj/item/cigbutt, /obj/machinery/light/small/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/command/corporate_showroom) "lWC" = ( @@ -40539,7 +40539,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "mut" = ( @@ -40607,7 +40607,7 @@ /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/cobweb, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/library) "mvx" = ( @@ -40762,7 +40762,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/teleporter) "mzr" = ( @@ -41314,7 +41314,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -41700,14 +41700,14 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron, /area/hallway/primary/starboard) "mPo" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/closet/crate/engineering/electrical, /obj/item/solar_assembly, @@ -42355,7 +42355,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "mYT" = ( @@ -43226,7 +43226,7 @@ }, /obj/item/pen, /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/secondary/command) "nnS" = ( @@ -44400,7 +44400,7 @@ "nIW" = ( /obj/structure/closet/crate, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/stack/cable_coil{ pixel_x = 3; pixel_y = -7 @@ -44470,7 +44470,7 @@ /turf/open/floor/iron, /area/hallway/primary/starboard) "nJN" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44538,7 +44538,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/grimy, /area/service/chapel/office) "nLc" = ( @@ -45436,7 +45436,7 @@ /turf/open/floor/wood, /area/service/library) "oaS" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) @@ -47436,7 +47436,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /mob/living/simple_animal/pet/dog/pug/mcgriff, /turf/open/floor/iron, /area/security/warden) @@ -47879,7 +47879,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tech) "oWC" = ( @@ -48013,7 +48013,7 @@ "oYX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/starboard/aft) "oZf" = ( @@ -48383,7 +48383,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) "pfr" = ( @@ -49701,7 +49701,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron{ dir = 1 }, @@ -49725,7 +49725,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/engineering/main) "pCw" = ( @@ -50177,7 +50177,7 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/virology) "pKY" = ( @@ -50702,7 +50702,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/structure/urinal/directional/west, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/toilet/auxiliary) "pVy" = ( @@ -51503,7 +51503,7 @@ /area/science/xenobiology) "qif" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -51569,7 +51569,7 @@ /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) "qjh" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -51619,7 +51619,7 @@ /area/security/prison) "qkk" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet, /area/service/chapel) "qkq" = ( @@ -52388,7 +52388,7 @@ /turf/open/floor/plating, /area/maintenance/starboard) "qAf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -52616,7 +52616,7 @@ /obj/item/stock_parts/subspace/crystal, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) "qDe" = ( @@ -53509,7 +53509,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/corner, @@ -53727,7 +53727,7 @@ /turf/open/floor/iron, /area/engineering/break_room) "raQ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/table{ name = "Jim Norton's Quebecois Coffee table" @@ -54566,7 +54566,7 @@ /turf/open/floor/holofloor/dark, /area/science/cytology) "rrJ" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron, @@ -54853,7 +54853,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "rvR" = ( @@ -55111,7 +55111,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/science/server) "rAh" = ( @@ -55440,7 +55440,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) "rHO" = ( @@ -55556,7 +55556,7 @@ /area/hallway/primary/port) "rJE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/storage) "rJR" = ( @@ -55670,7 +55670,7 @@ "rLI" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/locker) "rLW" = ( @@ -55739,7 +55739,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) "rNE" = ( @@ -55896,7 +55896,7 @@ icon_state = "plant-21" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -56871,7 +56871,7 @@ /area/hallway/primary/port) "shp" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, @@ -57172,7 +57172,7 @@ dir = 1 }, /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/small/directional/east, /obj/structure/cable, /obj/machinery/airalarm/directional/east, @@ -57686,7 +57686,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -58938,7 +58938,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/dorms) "sUW" = ( @@ -60195,7 +60195,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 6 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/genetics) @@ -60356,7 +60356,7 @@ /obj/item/crowbar, /obj/item/wrench, /obj/item/clothing/mask/gas, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/storage) @@ -60741,7 +60741,7 @@ /area/security/courtroom) "tAy" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) "tBd" = ( @@ -61160,7 +61160,7 @@ /area/engineering/break_room) "tIb" = ( /obj/effect/spawner/random/maintenance, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft) @@ -61210,7 +61210,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/secondary/entry) "tJb" = ( @@ -61428,7 +61428,7 @@ dir = 1 }, /obj/machinery/iv_drip, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/treatment_center) @@ -62062,7 +62062,7 @@ /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/starboard) "uax" = ( @@ -62177,7 +62177,7 @@ /area/command/corporate_showroom) "ucr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -62835,7 +62835,7 @@ /area/hallway/primary/port) "upY" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/depsec/supply, @@ -62949,7 +62949,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload_foyer) "urK" = ( @@ -63349,7 +63349,7 @@ /area/commons/vacant_room/office) "uyI" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/engineering/supermatter/room) "uyP" = ( @@ -63768,7 +63768,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "uGy" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -64366,7 +64366,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -64593,7 +64593,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "uUX" = ( @@ -65003,7 +65003,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -65385,7 +65385,7 @@ /area/engineering/break_room) "vkL" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/stack/sheet/iron/fifty, /obj/item/stack/sheet/iron/fifty, @@ -65461,7 +65461,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "vlV" = ( @@ -65532,7 +65532,7 @@ dir = 8; pixel_x = 14 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" @@ -66008,7 +66008,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "vtR" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -66686,7 +66686,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics) "vGG" = ( @@ -67208,7 +67208,7 @@ /area/engineering/supermatter/room) "vQQ" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/item/multitool/circuit{ pixel_x = 7 @@ -67713,7 +67713,7 @@ dir = 8 }, /obj/effect/landmark/start/hangover, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/central) "waq" = ( @@ -67793,7 +67793,7 @@ /obj/structure/rack, /obj/effect/spawner/random/maintenance, /obj/item/airlock_painter/decal, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/warehouse) @@ -67945,7 +67945,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/storage/art) "wfw" = ( @@ -68923,7 +68923,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/commons/vacant_room/commissary) "wzg" = ( @@ -69330,7 +69330,7 @@ /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/fore) "wHx" = ( @@ -69410,7 +69410,7 @@ dir = 1; network = list("ss13","medbay") }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) "wIi" = ( @@ -71531,7 +71531,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/fitness/recreation) "xvO" = ( @@ -71549,7 +71549,7 @@ /obj/structure/table/glass, /obj/item/clothing/glasses/science, /obj/item/clothing/glasses/science, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/pharmacy) "xwa" = ( @@ -71864,7 +71864,7 @@ /area/science/server) "xAQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light_switch/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" @@ -72274,7 +72274,7 @@ /area/command/bridge) "xJE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/sorting) "xJG" = ( @@ -72866,7 +72866,7 @@ /turf/open/floor/plating, /area/maintenance/port) "xYS" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -72997,7 +72997,7 @@ }, /obj/machinery/light/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/service/hydroponics/garden) "yav" = ( @@ -73406,7 +73406,7 @@ /obj/machinery/light/small/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) "yit" = ( diff --git a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm b/_maps/map_files/MetaStation/MetaStation_skyrat.dmm index 3a38da59fa4..d0e72cd7ba9 100644 --- a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm +++ b/_maps/map_files/MetaStation/MetaStation_skyrat.dmm @@ -70,7 +70,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/execution/education) "aaU" = ( @@ -1818,7 +1818,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/disposal) "apc" = ( @@ -2191,7 +2191,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/command/bridge) "ary" = ( @@ -2871,7 +2871,7 @@ req_access_txt = "1" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/brig) "axo" = ( @@ -2990,7 +2990,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /mob/living/simple_animal/pet/dog/pug/mcgriff, /turf/open/floor/iron, /area/security/warden) @@ -3143,7 +3143,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/fore) "aAf" = ( @@ -3491,7 +3491,7 @@ /area/security/checkpoint/engineering) "aCt" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/grimy, /area/security/detectives_office) "aCv" = ( @@ -3530,7 +3530,7 @@ /area/science/storage) "aCV" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/engineering/supermatter/room) "aDa" = ( @@ -3860,7 +3860,7 @@ /obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/closet/radiation, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) @@ -4988,7 +4988,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/construction/mining/aux_base) "aSN" = ( @@ -5199,7 +5199,7 @@ /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/courtroom) "aUH" = ( @@ -6104,7 +6104,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/security/checkpoint/customs) "bdd" = ( @@ -6468,7 +6468,7 @@ "bhf" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central) "bhB" = ( @@ -7432,7 +7432,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) "bsb" = ( @@ -7763,7 +7763,7 @@ /obj/item/cigbutt, /obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/port) "byy" = ( @@ -7819,7 +7819,7 @@ network = "tcommsat" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/grimy, /area/tcommsat/computer) "bzC" = ( @@ -8016,7 +8016,7 @@ /turf/open/floor/iron/dark/corner, /area/engineering/storage_shared) "bCB" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/engine, /area/science/misc_lab/range) @@ -8992,7 +8992,7 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9069,7 +9069,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9518,11 +9518,11 @@ "bWb" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/commons/locker) "bWh" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10642,7 +10642,7 @@ "cjk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -10685,7 +10685,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery) @@ -11139,7 +11139,7 @@ /area/medical/surgery) "cmt" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/white, /area/medical/medbay/central) "cmy" = ( @@ -11625,7 +11625,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/landmark/start/depsec/engineering, /turf/open/floor/iron, /area/security/checkpoint/engineering) @@ -11887,7 +11887,7 @@ /area/security/office) "ctA" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, @@ -12813,7 +12813,7 @@ "cDJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/abandoned) "cDN" = ( @@ -13111,7 +13111,7 @@ "cGL" = ( /obj/structure/cable, /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -13329,7 +13329,7 @@ "cJl" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/aft) "cJt" = ( @@ -13672,7 +13672,7 @@ /area/hallway/secondary/exit/departure_lounge) "cMk" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -13923,7 +13923,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "cOI" = ( @@ -14342,7 +14342,7 @@ /area/maintenance/department/science/xenobiology) "cTU" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -14375,7 +14375,7 @@ /obj/machinery/light/small/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) "cUv" = ( @@ -15020,7 +15020,7 @@ /turf/open/floor/iron, /area/service/bar) "ddR" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_y = 6 @@ -15571,7 +15571,7 @@ /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/starboard) "dmO" = ( @@ -15729,7 +15729,7 @@ /obj/item/coin/plasma, /obj/item/melee/chainofcommand, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/reagent_containers/food/drinks/flask/gold, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) @@ -15968,7 +15968,7 @@ "dtS" = ( /obj/item/cigbutt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16843,7 +16843,7 @@ /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/fore) "dHE" = ( @@ -17436,7 +17436,7 @@ /turf/open/floor/carpet, /area/command/bridge) "dRg" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/storage) @@ -18164,7 +18164,7 @@ /obj/machinery/light/directional/east, /obj/item/clothing/gloves/color/fyellow, /obj/item/gps, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/primary) "efu" = ( @@ -18314,7 +18314,7 @@ "eig" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/north, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "eiw" = ( @@ -18568,7 +18568,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -19269,7 +19269,7 @@ /turf/open/floor/engine/plasma, /area/engineering/atmos) "eyv" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -20722,7 +20722,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/room_b) @@ -20747,7 +20747,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23629,7 +23629,7 @@ }, /obj/structure/cable, /obj/machinery/chem_heater/withbuffer, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/chemistry) "fXV" = ( @@ -24943,7 +24943,7 @@ "gyS" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/south, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -26582,7 +26582,7 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "hhP" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -27421,7 +27421,7 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/cafeteria, /area/service/kitchen) "hyI" = ( @@ -28551,7 +28551,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/dark, @@ -28690,7 +28690,7 @@ /area/command/teleporter) "hXO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -30435,7 +30435,7 @@ /obj/structure/rack, /obj/item/tank/internals/emergency_oxygen, /obj/item/clothing/mask/breath, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/security/prison/safe) @@ -30606,7 +30606,7 @@ /area/maintenance/port/fore) "iKv" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "iKy" = ( @@ -32204,7 +32204,7 @@ /turf/open/floor/iron, /area/engineering/main) "jqU" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white, @@ -32430,7 +32430,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "jvt" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/security/interrogation) @@ -33105,7 +33105,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "jIZ" = ( @@ -33437,7 +33437,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/commons/dorms) "jOr" = ( @@ -33670,13 +33670,13 @@ pixel_x = -1; pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/cytology) "jSm" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -33737,7 +33737,7 @@ network = list("ss13","tcomms") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) "jUf" = ( @@ -34379,7 +34379,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "kgl" = ( @@ -35283,7 +35283,7 @@ /area/engineering/storage/tech) "kyp" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/disk/tech_disk{ pixel_x = -6 @@ -35542,7 +35542,7 @@ /obj/structure/cable, /obj/structure/table/wood, /obj/item/clothing/mask/cigarette/pipe, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/bar) "kDC" = ( @@ -35642,7 +35642,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "kFa" = ( @@ -35730,7 +35730,7 @@ /obj/item/restraints/legcuffs/beartrap, /obj/item/restraints/legcuffs/beartrap, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/service/janitor) "kHd" = ( @@ -35856,7 +35856,7 @@ /area/engineering/atmos) "kIY" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -36059,7 +36059,7 @@ /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) "kMr" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/table/wood, /obj/item/cartridge/detective{ pixel_x = 7; @@ -36150,7 +36150,7 @@ /obj/structure/table/wood, /obj/item/clothing/glasses/monocle, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/theater) "kOe" = ( @@ -36438,7 +36438,7 @@ /turf/open/floor/iron/dark/corner, /area/engineering/atmos) "kUo" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/medical/coldroom) @@ -37966,7 +37966,7 @@ /area/security/office) "lvG" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet, /area/service/chapel) "lvY" = ( @@ -38835,7 +38835,7 @@ /area/maintenance/starboard) "lNC" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/chair{ dir = 4 }, @@ -38853,7 +38853,7 @@ /area/maintenance/starboard) "lNJ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/depsec/supply, @@ -39148,7 +39148,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/cryo) @@ -39252,7 +39252,7 @@ /area/maintenance/starboard) "lWB" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/tile/purple{ @@ -40790,7 +40790,7 @@ /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/cobweb, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/library) "mvA" = ( @@ -41030,7 +41030,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/teleporter) "mzg" = ( @@ -41610,7 +41610,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -41919,7 +41919,7 @@ /turf/open/floor/iron/white, /area/hallway/primary/central) "mPo" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/closet/crate/engineering/electrical, /obj/item/solar_assembly, @@ -42447,7 +42447,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "mYT" = ( @@ -43284,7 +43284,7 @@ }, /obj/item/pen, /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/secondary/command) "nnS" = ( @@ -44577,7 +44577,7 @@ "nIW" = ( /obj/structure/closet/crate, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/item/stack/cable_coil{ pixel_x = 3; pixel_y = -7 @@ -44665,7 +44665,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/grimy, /area/service/chapel/office) "nLj" = ( @@ -45600,7 +45600,7 @@ /turf/open/floor/iron, /area/hallway/secondary/entry) "oaS" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) @@ -47492,7 +47492,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/fitness/recreation) @@ -48161,7 +48161,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tech) "oWC" = ( @@ -48673,7 +48673,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) "pfr" = ( @@ -49777,7 +49777,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron{ dir = 1 }, @@ -49792,7 +49792,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/engineering/main) "pCw" = ( @@ -50153,7 +50153,7 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/medical/virology) "pKT" = ( @@ -50716,7 +50716,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/structure/urinal/directional/west, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/toilet/auxiliary) "pVg" = ( @@ -51410,7 +51410,7 @@ /area/science/xenobiology) "qif" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -51467,7 +51467,7 @@ /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) "qjh" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -52245,7 +52245,7 @@ /turf/open/floor/plating, /area/maintenance/starboard) "qAf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -52404,7 +52404,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52841,7 +52841,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "qID" = ( @@ -53323,7 +53323,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/corner, @@ -53715,7 +53715,7 @@ /turf/open/floor/iron, /area/commons/locker) "raQ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/structure/table{ name = "Jim Norton's Quebecois Coffee table" @@ -54600,7 +54600,7 @@ /turf/open/floor/holofloor/dark, /area/science/cytology) "rrJ" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron, @@ -54805,7 +54805,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) "rtK" = ( @@ -55015,7 +55015,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "rwl" = ( @@ -55139,7 +55139,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "ryh" = ( @@ -55238,7 +55238,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/science/server) "rAh" = ( @@ -55707,7 +55707,7 @@ /area/hallway/primary/port) "rJE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/storage) "rJR" = ( @@ -55829,7 +55829,7 @@ "rLI" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/locker) "rLW" = ( @@ -55895,7 +55895,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) "rNv" = ( @@ -57318,7 +57318,7 @@ dir = 1 }, /obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/small/directional/east, /obj/structure/cable, /obj/machinery/airalarm/directional/east, @@ -59032,7 +59032,7 @@ icon_state = "plant-21" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -59132,7 +59132,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/dorms) "sVa" = ( @@ -59992,7 +59992,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "tlD" = ( @@ -60331,7 +60331,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 6 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/genetics) @@ -60472,7 +60472,7 @@ /obj/item/crowbar, /obj/item/wrench, /obj/item/clothing/mask/gas, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/storage) @@ -60760,7 +60760,7 @@ /area/hallway/primary/central) "tAy" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) "tAz" = ( @@ -61437,7 +61437,7 @@ dir = 1 }, /obj/machinery/iv_drip, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/treatment_center) @@ -63195,7 +63195,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload_foyer) "usc" = ( @@ -64072,7 +64072,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -64656,7 +64656,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -64872,7 +64872,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "uUX" = ( @@ -65115,7 +65115,7 @@ /obj/structure/rack, /obj/effect/spawner/random/maintenance, /obj/item/airlock_painter/decal, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/warehouse) @@ -65725,7 +65725,7 @@ /area/command/heads_quarters/cmo) "vkL" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/stack/sheet/iron/fifty, /obj/item/stack/sheet/iron/fifty, @@ -65794,7 +65794,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "vlQ" = ( @@ -65871,7 +65871,7 @@ dir = 8; pixel_x = 14 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" @@ -66487,7 +66487,7 @@ /turf/open/floor/iron/dark, /area/service/chapel/office) "vzr" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -66717,7 +66717,7 @@ /turf/open/floor/iron/dark, /area/security/prison/safe) "vCx" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -67025,7 +67025,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics) "vGT" = ( @@ -67603,7 +67603,7 @@ /area/engineering/supermatter/room) "vQQ" = ( /obj/structure/table, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/item/multitool/circuit{ pixel_x = 7 @@ -68110,7 +68110,7 @@ dir = 8 }, /obj/effect/landmark/start/hangover, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/primary/central) "waS" = ( @@ -68323,7 +68323,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/commons/storage/art) "wfw" = ( @@ -69316,7 +69316,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/commons/vacant_room/commissary) "wzg" = ( @@ -69804,7 +69804,7 @@ dir = 1; network = list("ss13","medbay") }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) "wIi" = ( @@ -70776,7 +70776,7 @@ "xaN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/starboard/aft) "xaQ" = ( @@ -71649,7 +71649,7 @@ /turf/open/floor/iron, /area/hallway/secondary/service) "xoC" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -72010,7 +72010,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/fitness/recreation) "xvO" = ( @@ -72028,7 +72028,7 @@ /obj/structure/table/glass, /obj/item/clothing/glasses/science, /obj/item/clothing/glasses/science, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/medical/pharmacy) "xwa" = ( @@ -72339,7 +72339,7 @@ /area/science/server) "xAQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light_switch/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" @@ -72837,7 +72837,7 @@ /area/command/bridge) "xJE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/sorting) "xJK" = ( @@ -73032,7 +73032,7 @@ /obj/item/stock_parts/subspace/crystal, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) "xMA" = ( @@ -73410,7 +73410,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) "xUy" = ( @@ -73601,7 +73601,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, @@ -73756,7 +73756,7 @@ }, /obj/machinery/light/directional/east, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/service/hydroponics/garden) "yaC" = ( diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index d52aa2d6d24..0a80e046bdf 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -133,9 +133,8 @@ /area/mine/laborcamp) "aA" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Labor Camp Library"; - dir = 8; network = list("labor") }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -428,7 +427,7 @@ /area/mine/laborcamp) "by" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/mine/laborcamp) "bB" = ( @@ -465,9 +464,8 @@ /turf/open/floor/plating, /area/mine/eva) "bG" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "EVA"; - dir = 4; network = list("mine") }, /obj/machinery/light/directional/west, @@ -650,7 +648,7 @@ /obj/item/stack/package_wrap, /obj/item/stack/package_wrap, /obj/item/hand_labeler, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/mine/eva) "cp" = ( @@ -818,7 +816,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/mine/production) "cZ" = ( @@ -867,7 +865,7 @@ "dh" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/mine/maintenance) "di" = ( @@ -975,9 +973,8 @@ /turf/open/floor/iron, /area/mine/production) "dA" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Communications Relay"; - dir = 8; network = list("mine") }, /turf/open/floor/circuit, @@ -1006,9 +1003,8 @@ /obj/item/reagent_containers/blood/random, /obj/item/reagent_containers/blood/random, /obj/item/reagent_containers/blood/random, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Outpost Infirmary"; - dir = 1; network = list("mine") }, /turf/open/floor/iron/white, @@ -1053,9 +1049,8 @@ /area/mine/production) "dK" = ( /obj/machinery/light/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Shuttle Docking Foyer"; - dir = 8; network = list("mine") }, /obj/effect/turf_decal/tile/brown, @@ -1070,9 +1065,8 @@ /turf/open/floor/iron, /area/mine/production) "dN" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Processing Area Room"; - dir = 8; network = list("mine") }, /obj/effect/turf_decal/tile/brown, @@ -1191,7 +1185,7 @@ /turf/open/floor/iron, /area/mine/living_quarters) "ed" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Crew Area Hallway"; network = list("mine") }, @@ -1215,7 +1209,7 @@ /area/mine/living_quarters) "eg" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/mine/living_quarters) "eh" = ( @@ -1234,7 +1228,7 @@ /turf/open/floor/iron, /area/mine/living_quarters) "ej" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Crew Area Hallway East"; network = list("mine") }, @@ -1414,7 +1408,7 @@ /turf/open/floor/iron, /area/mine/living_quarters) "fd" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Public Shuttle Lobby"; network = list("mine") }, @@ -1489,9 +1483,8 @@ /turf/open/floor/carpet, /area/mine/living_quarters) "ft" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Dormitories"; - dir = 4; network = list("mine") }, /obj/effect/turf_decal/tile/purple{ @@ -1559,9 +1552,8 @@ /turf/open/floor/iron, /area/mine/living_quarters) "fJ" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Crew Area"; - dir = 1; network = list("mine") }, /obj/machinery/computer/security/telescreen/entertainment/directional/south, @@ -2425,9 +2417,8 @@ /area/lavaland/surface/outdoors) "lK" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Labor Camp Operations"; - dir = 8; network = list("labor") }, /turf/open/floor/iron, @@ -2879,7 +2870,7 @@ /turf/open/indestructible/boss, /area/lavaland/surface/outdoors) "nj" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/structure/sign/poster/official/obey{ pixel_y = 32 }, @@ -2913,13 +2904,12 @@ "nA" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/mine/mechbay) "nH" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp External South"; - dir = 4; network = list("labor") }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -3040,9 +3030,8 @@ dir = 8 }, /obj/effect/turf_decal/tile/purple, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Mech Bay"; - dir = 1; network = list("mine") }, /turf/open/floor/iron, @@ -3119,9 +3108,8 @@ /obj/item/kirbyplants{ icon_state = "plant-05" }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp Cellblock"; - dir = 4; network = list("labor") }, /turf/open/floor/iron, @@ -3180,7 +3168,7 @@ /turf/open/floor/iron/freezer, /area/mine/living_quarters) "tP" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron, /area/mine/laborcamp) "tZ" = ( @@ -3361,9 +3349,8 @@ pixel_x = -32 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp Central"; - dir = 4; network = list("labor") }, /turf/open/floor/iron, @@ -3377,9 +3364,8 @@ /obj/item/pen, /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp Cell 3"; - dir = 4; network = list("labor") }, /turf/open/floor/iron, @@ -3390,7 +3376,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/mine/laborcamp/security) "zn" = ( @@ -3488,9 +3474,8 @@ /turf/open/floor/iron, /area/mine/laborcamp/security) "Bd" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp External West"; - dir = 4; network = list("labor") }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -3575,9 +3560,8 @@ /obj/item/pen, /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp Cell 1"; - dir = 4; network = list("labor") }, /turf/open/floor/iron, @@ -3632,9 +3616,8 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Labor Camp Security Office"; - dir = 1; network = list("labor") }, /turf/open/floor/iron, @@ -3833,9 +3816,8 @@ /turf/open/floor/iron, /area/mine/production) "Kz" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Labor Camp External North"; - dir = 1; network = list("labor") }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -3965,9 +3947,8 @@ /obj/item/pen, /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Labor Camp Cell 2"; - dir = 4; network = list("labor") }, /turf/open/floor/iron, @@ -4024,9 +4005,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Labor Camp Infirmary"; - dir = 8; network = list("labor") }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -4156,7 +4136,7 @@ /turf/open/floor/iron, /area/mine/laborcamp/security) "QX" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/machinery/flasher/directional/west{ id = "GulagCell 3" }, @@ -4194,7 +4174,7 @@ /turf/open/floor/iron, /area/mine/eva) "RY" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/structure/sign/poster/official/work_for_a_future{ pixel_y = 32 }, @@ -4578,8 +4558,7 @@ /turf/open/floor/iron, /area/mine/laborcamp) "YY" = ( -/obj/machinery/camera/autoname{ - dir = 1; +/obj/machinery/camera/autoname/directional/south{ network = list("mine") }, /turf/open/floor/iron, @@ -4611,9 +4590,8 @@ /area/mine/laborcamp) "ZD" = ( /obj/machinery/light/small/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Labor Camp Showers"; - dir = 1; network = list("labor") }, /turf/open/floor/iron/freezer, diff --git a/_maps/map_files/Mining/Rockplanet.dmm b/_maps/map_files/Mining/Rockplanet.dmm index 228070df4a5..d1e1ac44544 100644 --- a/_maps/map_files/Mining/Rockplanet.dmm +++ b/_maps/map_files/Mining/Rockplanet.dmm @@ -168,7 +168,7 @@ /turf/open/floor/plating, /area/mine/laborcamp/security) "cf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/mine/living_quarters) @@ -1542,7 +1542,7 @@ /turf/open/floor/iron, /area/mine/production) "nY" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/table, /obj/machinery/cell_charger{ @@ -2461,7 +2461,7 @@ /turf/open/floor/plating, /area/mine/lobby) "wv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/mine/production) @@ -2793,7 +2793,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/mine/lobby) "zy" = ( @@ -3294,7 +3294,7 @@ /area/rockplanet/surface/outdoors) "Dp" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/mine/eva) "Dr" = ( @@ -3965,7 +3965,7 @@ /area/mine/living_quarters) "HZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/mine/maintenance) @@ -4555,7 +4555,7 @@ /turf/closed/wall, /area/rockplanet/surface/outdoors) "Mw" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/darkblue{ @@ -4766,7 +4766,7 @@ /area/mine/living_quarters) "NR" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/mine/laborcamp) "NU" = ( @@ -4815,7 +4815,7 @@ /turf/open/floor/iron, /area/mine/living_quarters) "On" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/darkblue/filled/line{ dir = 1 }, diff --git a/_maps/map_files/NSSJourney/NSSJourney.dmm b/_maps/map_files/NSSJourney/NSSJourney.dmm index 8841f419030..fa3e57e1c64 100644 --- a/_maps/map_files/NSSJourney/NSSJourney.dmm +++ b/_maps/map_files/NSSJourney/NSSJourney.dmm @@ -1443,7 +1443,7 @@ /area/hallway/secondary/entry) "ajd" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/darkblue/filled/line{ dir = 1 }, @@ -4395,7 +4395,7 @@ amount = 10 }, /obj/item/stack/rods/fifty, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -4416,7 +4416,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -4564,7 +4564,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -5217,7 +5217,7 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "ayz" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/corner{ dir = 1 @@ -6034,7 +6034,7 @@ /obj/structure/table/reinforced, /obj/item/storage/belt/utility, /obj/item/radio/off, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) @@ -6324,7 +6324,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/entry) "aCq" = ( @@ -6499,7 +6499,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/closet/secure_closet/security, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -7331,7 +7331,7 @@ /area/commons/toilet) "aGm" = ( /obj/structure/table/glass, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/mineral/titanium/blue, /area/commons/toilet) @@ -9427,7 +9427,7 @@ /turf/open/floor/iron, /area/hallway/secondary/entry) "aNe" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) "aNf" = ( @@ -13720,7 +13720,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white/corner{ dir = 1 }, @@ -14499,7 +14499,7 @@ /area/ai_monitored/turret_protected/ai_upload) "bed" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "bee" = ( @@ -16634,7 +16634,7 @@ /area/maintenance/starboard) "bkz" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 4 }, @@ -18413,7 +18413,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "bpb" = ( @@ -18980,7 +18980,7 @@ /turf/open/floor/iron, /area/command/heads_quarters/hop) "bqD" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 @@ -23984,7 +23984,7 @@ /turf/open/floor/iron, /area/service/janitor) "bGC" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/tank_dispenser, /turf/open/floor/iron/white, @@ -25219,7 +25219,7 @@ /turf/open/floor/plating, /area/maintenance/aft) "bKH" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -27164,7 +27164,7 @@ /area/tcommsat/computer) "bSh" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/science/storage) @@ -27463,7 +27463,7 @@ /turf/open/floor/iron/smooth_large, /area/engineering/break_room) "bTq" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) @@ -29522,7 +29522,7 @@ /area/tcommsat/computer) "cbp" = ( /obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/command/heads_quarters/ce) @@ -31813,7 +31813,7 @@ /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) "cou" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/cytology) @@ -35144,7 +35144,7 @@ /turf/open/floor/engine, /area/engineering/main) "cFf" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white/side{ dir = 9 @@ -36991,7 +36991,7 @@ /area/medical/psychology) "dCe" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -37114,7 +37114,7 @@ "dIC" = ( /obj/structure/table/wood, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/commons/vacant_room/office) "dIF" = ( @@ -37268,7 +37268,7 @@ /area/security/brig) "dSm" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) "dSx" = ( @@ -37296,7 +37296,7 @@ /turf/open/floor/iron, /area/hallway/primary/starboard) "dUr" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37368,7 +37368,7 @@ /turf/open/floor/iron, /area/security/prison) "dXW" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/brown, /obj/structure/cable, /obj/effect/turf_decal/tile/brown{ @@ -37453,7 +37453,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/vending/wardrobe/peacekeeper_wardrobe, /obj/effect/turf_decal/tile/neutral, @@ -37563,7 +37563,7 @@ /turf/open/floor/iron/textured, /area/security/prison) "efX" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/paicard, @@ -37689,7 +37689,7 @@ /turf/open/floor/iron, /area/commons/fitness) "eoi" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/command/meeting_room) @@ -37724,12 +37724,12 @@ /turf/open/floor/iron/dark, /area/medical/virology) "epD" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) "epT" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/chair/comfy/brown{ dir = 8 @@ -37738,7 +37738,7 @@ /turf/open/floor/wood, /area/service/bar) "eqs" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/command/teleporter) @@ -37824,7 +37824,7 @@ /turf/open/floor/iron, /area/hallway/primary/starboard) "evX" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/warden) @@ -38078,7 +38078,7 @@ /turf/open/floor/iron/chapel, /area/service/chapel) "eKA" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -38397,7 +38397,7 @@ /turf/open/floor/iron/dark/textured, /area/blueshield) "fdf" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Port Solar Control"; dir = 1 @@ -38565,7 +38565,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "fju" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Virology Module"; network = list("ss13","medbay") @@ -38631,7 +38631,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, @@ -38729,7 +38729,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38815,7 +38815,7 @@ /turf/open/floor/iron/dark, /area/engineering/main) "ftB" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/siding/thinplating/light, @@ -39163,7 +39163,7 @@ /turf/open/floor/iron, /area/security/prison) "fNH" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -39230,7 +39230,7 @@ /turf/open/floor/plating, /area/engineering/gravity_generator) "fPO" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/trimline/darkblue/filled/line{ dir = 4 @@ -39337,7 +39337,7 @@ /area/medical/virology) "fSb" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/sorting) @@ -39455,7 +39455,7 @@ /turf/open/floor/iron/white, /area/medical/virology) "fYH" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -39739,7 +39739,7 @@ /area/maintenance/port/aft) "gnd" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/smooth_large, /area/engineering/gravity_generator) "gnf" = ( @@ -39810,7 +39810,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/service/janitor) @@ -39820,7 +39820,7 @@ network = list("ss13","rd"); pixel_x = 22 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -39850,7 +39850,7 @@ /turf/open/floor/iron/dark, /area/security/warden) "gwl" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain/private/NTREP) @@ -40186,12 +40186,12 @@ /turf/open/floor/iron/dark, /area/security/courtroom) "gNJ" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) "gOV" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/service/hydroponics/garden) "gPR" = ( @@ -40279,7 +40279,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "gTp" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/iron/white, @@ -40460,7 +40460,7 @@ dir = 4 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/room_b) @@ -40660,7 +40660,7 @@ /turf/open/floor/iron/white, /area/medical/medbay) "hkT" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/commons/storage/emergency/port) @@ -41618,7 +41618,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "idW" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -41745,7 +41745,7 @@ }, /area/maintenance/port/aft) "iiC" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/camera{ c_tag = "Fore Primary Hallway"; dir = 4 @@ -41786,7 +41786,7 @@ /turf/open/floor/wood, /area/hallway/secondary/service) "ikq" = ( -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) "ikZ" = ( @@ -41838,7 +41838,7 @@ /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/item/reagent_containers/spray/cleaner, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -41887,7 +41887,7 @@ /turf/open/floor/iron/dark/textured_large, /area/service/hydroponics) "irX" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/chair, /obj/structure/cable, /turf/open/floor/iron/dark, @@ -42127,7 +42127,7 @@ /turf/open/floor/iron/dark, /area/security/prison) "iHd" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/engineering/break_room) @@ -42168,7 +42168,7 @@ /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "iIZ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -42516,7 +42516,7 @@ /turf/open/floor/plating, /area/maintenance/port) "jbV" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/courtroom) @@ -42676,7 +42676,7 @@ /area/medical/storage) "jgZ" = ( /obj/effect/decal/cleanable/oil, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) @@ -42694,7 +42694,7 @@ }, /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -42789,7 +42789,7 @@ /turf/open/floor/iron/dark, /area/security/prison) "jkG" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -43289,7 +43289,7 @@ /turf/open/floor/wood, /area/service/library) "jIe" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -43624,7 +43624,7 @@ /turf/open/floor/iron/white, /area/medical/pharmacy) "jVM" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/table, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/rods/fifty, @@ -43659,7 +43659,7 @@ "jXz" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/genetics) @@ -43913,7 +43913,7 @@ "khQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -44239,7 +44239,7 @@ "kwD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, @@ -44348,7 +44348,7 @@ /turf/open/floor/iron, /area/commons/dorms) "kzL" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -44413,7 +44413,7 @@ /area/science/research) "kAS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/commons/locker) @@ -44466,7 +44466,7 @@ /turf/open/floor/wood, /area/hallway/secondary/service) "kCI" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 5 @@ -44567,7 +44567,7 @@ pixel_x = -2; pixel_y = -1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/primary) @@ -44777,7 +44777,7 @@ /turf/open/floor/plating, /area/medical/cryo) "kQc" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/smooth, /area/ai_monitored/security/armory) @@ -45270,7 +45270,7 @@ /turf/open/floor/iron/airless, /area/space/nearstation) "lwp" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain) @@ -45492,7 +45492,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel/office) @@ -45681,7 +45681,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/security/checkpoint/science) @@ -45764,7 +45764,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central/secondary) "lSv" = ( @@ -45800,7 +45800,7 @@ /area/security/brig) "lTE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -45888,7 +45888,7 @@ /turf/open/floor/wood, /area/service/bar) "lZo" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white/corner{ @@ -46119,7 +46119,7 @@ /turf/open/floor/wood, /area/service/bar) "mkV" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/closet/emcloset, /obj/structure/cable, /turf/open/floor/iron, @@ -46646,7 +46646,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) "mPh" = ( @@ -47374,12 +47374,12 @@ }, /area/brigofficer) "nyF" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/construction) "nyZ" = ( -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/starboard) "nzh" = ( @@ -47862,7 +47862,7 @@ /turf/open/floor/iron/dark/side, /area/security/prison/safe) "nRA" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Aft Port Solar Control"; dir = 1 @@ -47882,7 +47882,7 @@ /obj/item/chisel{ pixel_y = 7 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/art) @@ -47896,7 +47896,7 @@ /turf/open/floor/circuit, /area/ai_monitored/command/nuke_storage) "nTD" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/sign/painting/library{ pixel_x = -32 @@ -48066,7 +48066,7 @@ /turf/open/floor/iron/dark, /area/service/chapel) "nZo" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/bed/dogbed/lia, /turf/open/floor/carpet, @@ -48134,7 +48134,7 @@ /turf/closed/wall, /area/science/storage) "ogG" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -48268,7 +48268,7 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/commons/cryopods) @@ -48490,7 +48490,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/aft) @@ -48631,7 +48631,7 @@ pixel_x = 5; pixel_y = 25 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark/purple/side{ dir = 5 @@ -48922,7 +48922,7 @@ /obj/machinery/camera{ c_tag = "Tech Storage" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/storage/tech) @@ -49014,7 +49014,7 @@ /turf/closed/wall/r_wall, /area/science/server) "oYv" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) @@ -49317,7 +49317,7 @@ /turf/open/floor/iron/dark, /area/security/prison) "pnD" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) @@ -49366,7 +49366,7 @@ /area/commons/storage/primary) "ppZ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "pqf" = ( @@ -49967,7 +49967,7 @@ /area/security/brig) "pRs" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, @@ -50379,7 +50379,7 @@ /area/cargo/qm) "qmO" = ( /obj/machinery/griddle, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/cafeteria, /area/service/kitchen) @@ -50750,7 +50750,7 @@ /turf/open/floor/mineral/titanium/blue, /area/commons/toilet) "qKp" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -50854,7 +50854,7 @@ pixel_y = 3 }, /obj/item/stock_parts/scanning_module, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/light/directional/east, /turf/open/floor/iron/white, @@ -51291,7 +51291,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -51755,7 +51755,7 @@ /turf/open/floor/iron/freezer, /area/security/prison) "rID" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/wood, /area/blueshield) @@ -52120,7 +52120,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/robotics/mechbay) @@ -52299,7 +52299,7 @@ /turf/open/space/basic, /area/space/nearstation) "skT" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/starboard) @@ -52394,7 +52394,7 @@ /area/service/chapel) "sox" = ( /obj/structure/closet/secure_closet/injection, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -52613,7 +52613,7 @@ /turf/open/floor/plating, /area/maintenance/port) "sCZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) @@ -52628,7 +52628,7 @@ /turf/open/floor/iron/dark, /area/security/courtroom) "sDq" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) @@ -52668,7 +52668,7 @@ }, /obj/structure/cable, /obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/small/directional/west, /turf/open/floor/iron/smooth_large, /area/engineering/engine_smes) @@ -52906,7 +52906,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/tcommsat/computer) "sOL" = ( @@ -53155,7 +53155,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/chemistry) @@ -53221,7 +53221,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore/secondary) @@ -54046,7 +54046,7 @@ /area/commons/storage/tools) "tQM" = ( /obj/structure/bed/dogbed/ian, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 @@ -54308,7 +54308,7 @@ /turf/open/floor/iron, /area/commons/locker) "uel" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -54502,7 +54502,7 @@ /turf/open/floor/carpet/blue, /area/medical/psychology) "umE" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54738,7 +54738,7 @@ /turf/open/space/basic, /area/space/nearstation) "uyn" = ( -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/commons/locker) "uyp" = ( @@ -54837,7 +54837,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "uBY" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) @@ -54970,7 +54970,7 @@ /turf/open/floor/iron/white, /area/science/research) "uIQ" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/grimy, @@ -55004,7 +55004,7 @@ /area/service/library) "uKu" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/trimline/darkblue/filled/warning{ dir = 6 }, @@ -55282,7 +55282,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55295,7 +55295,7 @@ /turf/open/floor/iron/dark, /area/security/office) "uYf" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel) @@ -55521,7 +55521,7 @@ /turf/open/floor/iron/smooth_large, /area/engineering/main) "vkQ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plastic, @@ -55696,7 +55696,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "vvZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ dir = 4 @@ -56176,7 +56176,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/flasher{ id = "AI"; pixel_x = -11; @@ -56452,7 +56452,7 @@ /area/security/checkpoint/supply) "waa" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -56465,7 +56465,7 @@ /area/medical/medbay) "waf" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -56540,7 +56540,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -57061,7 +57061,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table, /obj/item/hand_labeler, @@ -57157,7 +57157,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery) @@ -57200,7 +57200,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -57410,7 +57410,7 @@ dir = 1 }, /obj/structure/table/glass, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/item/reagent_containers/glass/bottle/epinephrine, /obj/item/reagent_containers/glass/bottle/multiver{ @@ -57562,7 +57562,7 @@ /area/engineering/atmos) "wXs" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/escape) "wXA" = ( @@ -57581,14 +57581,14 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/cryo) "wYB" = ( /turf/closed/wall, /area/security/detectives_office) "wYZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/darkblue/filled/line{ dir = 1 @@ -58051,7 +58051,7 @@ /turf/open/floor/iron/dark, /area/security/brig) "xqJ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -58316,7 +58316,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "xGZ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -58492,7 +58492,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/service/theater) "xNZ" = ( @@ -58727,7 +58727,7 @@ /turf/open/floor/iron/dark, /area/medical/morgue) "xWM" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/service/hydroponics) @@ -59040,7 +59040,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/medical_kiosk, /obj/machinery/light/directional/north, /turf/open/floor/iron/white, diff --git a/_maps/map_files/WaterKiloStation/WaterKiloStation.dmm b/_maps/map_files/WaterKiloStation/WaterKiloStation.dmm index 98bf5976946..14b84cb4085 100644 --- a/_maps/map_files/WaterKiloStation/WaterKiloStation.dmm +++ b/_maps/map_files/WaterKiloStation/WaterKiloStation.dmm @@ -954,7 +954,7 @@ /area/ai_monitored/turret_protected/ai) "abS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -1467,7 +1467,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/atmos) "acU" = ( @@ -1845,7 +1845,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) "adE" = ( @@ -2886,7 +2886,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) "afX" = ( @@ -3771,7 +3771,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/department/electrical) "ahR" = ( @@ -3841,7 +3841,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) "aih" = ( @@ -5837,7 +5837,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -7851,7 +7851,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -7890,7 +7890,7 @@ /obj/item/toy/plush/moth{ name = "Big Moffer" }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/medical/psychology) "aqR" = ( @@ -8206,7 +8206,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/genetics) "arH" = ( @@ -8462,7 +8462,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -8570,7 +8570,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/medical/morgue) "asC" = ( @@ -8729,7 +8729,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -8901,7 +8901,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/server) "atv" = ( @@ -8928,7 +8928,7 @@ }, /obj/effect/decal/cleanable/oil, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -9329,7 +9329,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -9391,7 +9391,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aux" = ( @@ -10621,7 +10621,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine/telecomms, /area/tcommsat/server) "axB" = ( @@ -10648,7 +10648,7 @@ /area/maintenance/starboard/fore) "axD" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/recharge_floor, /area/science/robotics/mechbay) "axE" = ( @@ -10704,7 +10704,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) "axL" = ( @@ -12092,7 +12092,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) "aCI" = ( @@ -12434,7 +12434,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/medical/cryo) "aDY" = ( @@ -12691,7 +12691,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/science/mixing) "aEK" = ( @@ -13684,7 +13684,7 @@ /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/tcommsat/computer) "aIA" = ( @@ -14563,7 +14563,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -14863,7 +14863,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/showroomfloor, /area/science/mixing/chamber) "aMP" = ( @@ -16874,7 +16874,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/modular_computer/console/preset/cargochat/medical{ dir = 8 }, @@ -17000,7 +17000,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) "aQM" = ( @@ -17281,7 +17281,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/research) "aRq" = ( @@ -18351,7 +18351,7 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/medical/storage) "aTk" = ( @@ -18487,7 +18487,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) "aTu" = ( @@ -19170,7 +19170,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) "aUL" = ( @@ -20761,7 +20761,7 @@ name = "scrubber ducky" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/storage) "aYc" = ( @@ -22045,7 +22045,7 @@ /area/science/storage) "baA" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -22248,7 +22248,7 @@ /obj/structure/table, /obj/item/book/manual/wiki/surgery, /obj/item/razor, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/medical/surgery) @@ -24275,7 +24275,7 @@ /obj/effect/turf_decal/siding/purple{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/science/lab) "beN" = ( @@ -24340,7 +24340,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/medical/pharmacy) "beS" = ( @@ -27714,7 +27714,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/medical/virology) "bqB" = ( @@ -28345,7 +28345,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -30790,7 +30790,7 @@ pixel_y = 24 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/security/checkpoint/supply) "bFf" = ( @@ -31865,7 +31865,7 @@ /area/security/courtroom) "bIx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "bIA" = ( @@ -33882,7 +33882,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -35013,7 +35013,7 @@ }, /obj/item/storage/backpack, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) "bSk" = ( @@ -40620,7 +40620,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/prison) "ceu" = ( @@ -40930,7 +40930,7 @@ name = "shuttle camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "cfp" = ( @@ -41308,7 +41308,7 @@ }, /obj/structure/cable, /obj/item/book/manual/wiki/detective, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/security/detectives_office) "cgk" = ( @@ -41471,7 +41471,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/warden) "cgC" = ( @@ -42829,7 +42829,7 @@ pixel_x = 30 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) "cjY" = ( @@ -42936,7 +42936,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/hallway/primary/aft) "ckk" = ( @@ -43263,7 +43263,7 @@ "ckY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -43994,7 +43994,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -44726,7 +44726,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/security/brig) "cpF" = ( @@ -44866,7 +44866,7 @@ "cpV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -46653,7 +46653,7 @@ /area/medical/virology) "cuK" = ( /obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/security/prison/safe) @@ -47114,7 +47114,7 @@ /obj/item/clothing/glasses/science, /obj/item/reagent_containers/dropper, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) "cvF" = ( @@ -47616,7 +47616,7 @@ /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -48413,7 +48413,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/processing) "czz" = ( @@ -48528,7 +48528,7 @@ pixel_y = -26 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) "czL" = ( @@ -48656,7 +48656,7 @@ }, /obj/effect/spawner/random/contraband/armory, /obj/effect/spawner/random/maintenance/three, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) "czZ" = ( @@ -50646,7 +50646,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -50726,7 +50726,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/glowstick, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -52201,7 +52201,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) "cNX" = ( @@ -52909,7 +52909,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) "dbk" = ( @@ -55068,7 +55068,7 @@ /obj/structure/table, /obj/item/cartridge/lawyer, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/lawoffice) "ely" = ( @@ -55394,7 +55394,7 @@ /obj/item/hand_labeler, /obj/item/reagent_containers/spray/cleaner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) "euk" = ( @@ -55957,7 +55957,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating{ icon_state = "panelscorched" @@ -56095,7 +56095,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/theater) "eMc" = ( @@ -57036,7 +57036,7 @@ /area/maintenance/starboard/aft) "fiH" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/chapel{ dir = 1 }, @@ -57097,7 +57097,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/cargo/warehouse) "fmo" = ( @@ -57622,7 +57622,7 @@ c_tag = "Fore Hallway Diner"; name = "fore camera" }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/fore) "fBN" = ( @@ -57779,7 +57779,7 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/bridge) "fEv" = ( @@ -58127,7 +58127,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) "fKY" = ( @@ -58183,7 +58183,7 @@ }, /obj/structure/cable, /obj/item/clothing/gloves/color/fyellow, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/commons/storage/primary) "fMz" = ( @@ -58441,7 +58441,7 @@ /obj/structure/cable, /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -60967,7 +60967,7 @@ name = "hydroponics camera" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/hydroponics) "htQ" = ( @@ -62293,7 +62293,7 @@ /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/gateway) "ieA" = ( @@ -63216,7 +63216,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/service/janitor) "iCg" = ( @@ -63374,7 +63374,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/service/bar/atrium) "iGn" = ( @@ -63618,7 +63618,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/locker) "iNC" = ( @@ -65021,7 +65021,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/hallway/secondary/entry) "jGy" = ( @@ -65263,7 +65263,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, /area/service/kitchen) "jMR" = ( @@ -65601,7 +65601,7 @@ /obj/item/wrench, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) "jUZ" = ( @@ -67046,7 +67046,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/engine, /area/engineering/storage/tech) "kDP" = ( @@ -67707,7 +67707,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/engineering/main) "kVV" = ( @@ -69609,7 +69609,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/bar) "lSB" = ( @@ -71644,7 +71644,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/service/chapel/office) "mUV" = ( @@ -72553,7 +72553,7 @@ /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/item/clothing/suit/hooded/wintercoat/miner, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/miningoffice) "nzY" = ( @@ -73103,7 +73103,7 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/fitness/recreation) "nNZ" = ( @@ -73431,7 +73431,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/storage) "nVl" = ( @@ -73916,7 +73916,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) "ohJ" = ( @@ -74585,7 +74585,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) "oyS" = ( @@ -74834,7 +74834,7 @@ }, /obj/structure/disposalpipe/trunk, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/cargo/qm) "oIi" = ( @@ -76335,7 +76335,7 @@ /obj/item/stamp/rd{ pixel_x = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) "pvK" = ( @@ -76976,7 +76976,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/commons/vacant_room/commissary) "pLY" = ( @@ -77492,7 +77492,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/cargo/sorting) "qbR" = ( @@ -79087,7 +79087,7 @@ /obj/machinery/libraryscanner, /obj/effect/turf_decal/bot_white, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/service/library) @@ -79645,7 +79645,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/command/teleporter) "rja" = ( @@ -81048,7 +81048,7 @@ "rZn" = ( /obj/structure/bed/dogbed/ian, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /mob/living/simple_animal/pet/dog/corgi/ian{ dir = 8 }, @@ -81596,7 +81596,7 @@ c_tag = "Head of Security's Office" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) "squ" = ( @@ -82226,7 +82226,7 @@ dir = 10 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port/aft) "sFA" = ( @@ -83380,7 +83380,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/computer/operating{ dir = 1 }, @@ -83945,7 +83945,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/engineering/break_room) "tEN" = ( @@ -84231,7 +84231,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/atmos) "tNt" = ( @@ -85070,7 +85070,7 @@ /turf/open/floor/iron, /area/maintenance/disposal/incinerator) "ukv" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -87167,7 +87167,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/security/office) "vlm" = ( @@ -89130,7 +89130,7 @@ dir = 4; name = "port camera" }, -/obj/machinery/bluespace_vendor/west, +/obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron/dark/corner{ dir = 8 }, @@ -89785,7 +89785,7 @@ pixel_y = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -89880,7 +89880,7 @@ /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain) "wOr" = ( @@ -90041,7 +90041,7 @@ /area/solars/starboard/aft) "wSp" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -92548,7 +92548,7 @@ network = list("ss13","qm") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/cargo/office) "ygB" = ( diff --git a/_maps/map_files/debug/multiz.dmm b/_maps/map_files/debug/multiz.dmm index db2ae662e2c..6974ff016c3 100644 --- a/_maps/map_files/debug/multiz.dmm +++ b/_maps/map_files/debug/multiz.dmm @@ -39,7 +39,7 @@ /turf/closed/wall/r_wall, /area/engineering/gravity_generator) "al" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -60,7 +60,7 @@ /turf/open/space, /area/space/nearstation) "ap" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -80,7 +80,7 @@ /obj/machinery/power/smes{ charge = 5e+006 }, -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -362,7 +362,7 @@ dir = 8; pixel_x = -25 }, -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -391,7 +391,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "bG" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -450,7 +450,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "bU" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -700,7 +700,7 @@ /turf/open/floor/iron, /area/construction) "da" = ( -/obj/machinery/airalarm{ +/obj/machinery/airalarm/directional/north{ locked = 0; pixel_y = 23 }, @@ -1460,7 +1460,7 @@ /turf/open/floor/plating, /area/commons/storage/primary) "BM" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/construction) @@ -1702,7 +1702,7 @@ /turf/open/floor/iron, /area/engineering/storage) "UA" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage) @@ -1739,7 +1739,7 @@ /turf/open/floor/plating, /area/hallway/secondary/service) "XQ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/hallway/secondary/service) diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm index 507e9390a7c..6dd7763c638 100644 --- a/_maps/map_files/debug/runtimestation.dmm +++ b/_maps/map_files/debug/runtimestation.dmm @@ -60,14 +60,15 @@ /turf/open/floor/iron, /area/engineering/main) "aq" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/machinery/computer/monitor, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) "ar" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/structure/closet/secure_closet/engineering_welding{ locked = 0 @@ -79,7 +80,8 @@ charge = 5e+006 }, /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -275,7 +277,7 @@ /obj/item/weldingtool/experimental, /obj/item/inducer, /obj/item/storage/belt/utility/chief/full, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) @@ -292,7 +294,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/gravity_generator) @@ -365,7 +367,8 @@ /area/engineering/gravity_generator) "bs" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/rnd/destructive_analyzer, /turf/open/floor/iron, @@ -420,9 +423,10 @@ /area/science) "bG" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -470,7 +474,7 @@ /turf/closed/wall/r_wall, /area/maintenance/aft) "bM" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -490,7 +494,8 @@ /area/cargo/miningoffice) "bP" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/structure/table, /obj/machinery/reagentgrinder, @@ -501,8 +506,8 @@ /turf/open/floor/iron/dark, /area/medical/chemistry) "bR" = ( -/obj/machinery/camera/autoname, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/camera/directional/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/chem_heater/debug, /turf/open/floor/iron/dark, @@ -520,9 +525,10 @@ /area/security/brig) "bU" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -546,7 +552,7 @@ }, /area/medical/medbay) "bW" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -724,7 +730,7 @@ /turf/open/floor/iron, /area/hallway/primary/central) "cC" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -784,7 +790,7 @@ }, /area/medical/medbay) "cI" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) @@ -843,9 +849,10 @@ /area/commons/storage/primary) "cW" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, /turf/open/floor/iron, @@ -884,9 +891,10 @@ /area/commons/storage/primary) "dd" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/stripes/line, /obj/structure/cable, /turf/open/floor/iron, @@ -1098,18 +1106,18 @@ /area/security/brig) "dS" = ( /obj/machinery/atmospherics/components/tank/air, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/plating, /area/engineering/atmos) "dT" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) "dU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -1123,16 +1131,14 @@ /area/hallway/secondary/entry) "dW" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/iron, /area/construction) "dX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/camera/autoname{ - dir = 4 - }, +/obj/machinery/camera/autoname/directional/west, /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/construction) @@ -1143,16 +1149,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/camera/autoname{ - dir = 1 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/construction) "ea" = ( /obj/structure/table, -/obj/machinery/camera/autoname{ - dir = 1 - }, +/obj/machinery/camera/autoname/directional/south, /obj/item/gun/magic/wand/resurrection/debug, /turf/open/floor/iron, /area/commons/storage/primary) @@ -1267,9 +1269,7 @@ /turf/closed/wall, /area/cargo/storage) "ez" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, +/obj/machinery/camera/autoname/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -1306,7 +1306,7 @@ /turf/open/space/basic, /area/space) "eF" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) @@ -1342,7 +1342,7 @@ /area/hallway/secondary/entry) "eM" = ( /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 23 }, /turf/open/floor/iron, @@ -1355,7 +1355,7 @@ /turf/open/floor/iron, /area/cargo/storage) "eP" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) @@ -1550,9 +1550,7 @@ /turf/open/space/basic, /area/space) "fq" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/cargo/storage) "fr" = ( @@ -1640,7 +1638,7 @@ /area/commons/storage/primary) "fD" = ( /obj/machinery/light/directional/north, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/effect/turf_decal/plaque{ icon_state = "L11" }, @@ -1734,13 +1732,14 @@ /turf/open/floor/plating, /area/commons/storage/primary) "fS" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "fU" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 @@ -1834,9 +1833,9 @@ /turf/open/floor/plating, /area/commons/storage/primary) "gi" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/airalarm/unlocked{ - dir = 8; + dir = 4; pixel_x = 32 }, /obj/structure/cable, @@ -1864,7 +1863,7 @@ /turf/open/floor/iron, /area/cargo/miningoffice) "gn" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/iron, /area/security/brig) "go" = ( @@ -1948,9 +1947,7 @@ /turf/open/floor/iron, /area/hallway/secondary/entry) "gD" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, +/obj/machinery/camera/autoname/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -1958,13 +1955,11 @@ /turf/open/floor/iron, /area/cargo/miningoffice) "gE" = ( -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/iron, /area/hallway/secondary/entry) "gF" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/hallway/secondary/entry) "gG" = ( @@ -1978,13 +1973,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "gI" = ( /obj/machinery/light/directional/north, -/obj/machinery/camera/autoname, +/obj/machinery/camera/directional/north, /turf/open/floor/iron, /area/hallway/secondary/entry) "gJ" = ( @@ -2046,7 +2041,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) @@ -2262,7 +2257,8 @@ dir = 4 }, /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron, /area/hallway/primary/central) @@ -2277,13 +2273,14 @@ /turf/open/floor/engine, /area/hallway/secondary/entry) "zo" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) "AE" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron/dark, /area/science/misc_lab) @@ -2571,7 +2568,7 @@ /area/hallway/primary/central) "Vr" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -2680,7 +2677,7 @@ "Yy" = ( /obj/machinery/light/directional/north, /obj/machinery/rnd/production/circuit_imprinter/department, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/science) diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index ccf9d62be67..86c56d349fc 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -117,9 +117,6 @@ }, /turf/open/floor/iron/dark, /area/centcom/briefing/storage) -"at" = ( -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "au" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron/fifty, @@ -232,12 +229,6 @@ /obj/effect/spawner/random/entertainment/gambling, /turf/open/floor/carpet/black, /area/centcom/holding) -"aT" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/duct, -/obj/item/clothing/suit/apron, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "aW" = ( /obj/machinery/door/poddoor{ id = "thunderdomehea"; @@ -318,12 +309,6 @@ }, /turf/open/floor/iron, /area/centcom/briefing/storage) -"bm" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/centcom/ferry) "bp" = ( /obj/item/trash/sosjerky, /obj/effect/decal/cleanable/dirt, @@ -399,10 +384,6 @@ /obj/machinery/door/window/survival_pod, /turf/open/floor/iron/showroomfloor, /area/centcom/holding) -"bL" = ( -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/carpet/black, -/area/centcom/holding) "bN" = ( /obj/effect/turf_decal/tile/dark, /obj/effect/turf_decal/tile/dark{ @@ -509,16 +490,6 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/centcom/holding) -"ck" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "cl" = ( /obj/machinery/vending/boozeomat, /turf/closed/wall/mineral/wood, @@ -724,6 +695,15 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, /area/centcom/control) +"dc" = ( +/obj/machinery/vending/coffee{ + default_price = 0; + extra_price = 0; + fair_market_price = 0; + name = "\improper Jim Norton's Quebecois Coffee" + }, +/turf/open/floor/wood/large, +/area/centcom/holding) "dd" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/stripes/line{ @@ -764,6 +744,20 @@ }, /turf/open/floor/iron/dark, /area/centcom/admin) +"dh" = ( +/obj/structure/closet/crate, +/obj/item/vending_refill/autodrobe, +/obj/item/stack/sheet/paperframes/fifty, +/obj/item/stack/sheet/paperframes/fifty, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "dj" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -869,6 +863,10 @@ }, /turf/open/floor/iron/dark, /area/centcom/briefing) +"dF" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "dK" = ( /obj/machinery/door/poddoor{ id = "thunderdomegen"; @@ -882,6 +880,11 @@ /obj/item/instrument/saxophone, /turf/open/floor/wood/parquet, /area/centcom/holding) +"dN" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/rcl/pre_loaded, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "dO" = ( /obj/machinery/light/directional/south, /obj/effect/landmark/holding_facility, @@ -940,6 +943,13 @@ }, /turf/open/floor/wood/parquet, /area/centcom/holding) +"dW" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) "dY" = ( /turf/open/floor/plating/asteroid/basalt/airless, /area/centcom/holding) @@ -952,10 +962,6 @@ }, /turf/open/floor/wood/tile, /area/centcom/holding) -"ed" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood/parquet, -/area/centcom/holding) "eh" = ( /obj/structure/chair/office, /obj/effect/landmark/ert_spawn, @@ -1063,6 +1069,10 @@ }, /turf/open/floor/plating/sandy_dirt, /area/centcom/holding) +"ev" = ( +/obj/machinery/photocopier, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "ew" = ( /obj/structure/table/wood, /obj/machinery/computer/bookmanagement, @@ -1109,29 +1119,6 @@ "eF" = ( /turf/open/floor/iron/grimy, /area/centcom/briefing) -"eH" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open{ - name = "freezer" - }, -/obj/item/food/meat/slab/killertomato, -/obj/item/food/meat/slab/killertomato, -/obj/item/food/grown/tomato, -/obj/item/food/grown/tomato, -/obj/item/food/grown/tomato, -/obj/item/food/grown/wheat, -/obj/item/food/grown/wheat, -/obj/item/food/grown/wheat, -/obj/item/food/grown/berries, -/obj/item/food/grown/berries, -/obj/item/food/grown/cabbage, -/obj/item/food/grown/cherries, -/obj/item/food/grown/cherries, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/food/grown/redbeet, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "eJ" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp{ @@ -1255,13 +1242,6 @@ }, /turf/open/floor/stone, /area/centcom/holding) -"ff" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) "fg" = ( /turf/closed/indestructible/weeb, /area/centcom/holding) @@ -1285,6 +1265,27 @@ /obj/machinery/duct, /turf/open/floor/carpet/black, /area/centcom/holding) +"fr" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/screwdriver/power, +/obj/structure/cable, +/turf/open/floor/iron, +/area/centcom/admin/storage) "fs" = ( /obj/effect/turf_decal/tile/yellow/half, /obj/effect/turf_decal/tile/yellow/half{ @@ -1304,6 +1305,16 @@ dir = 4 }, /area/centcom/holding) +"ft" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/multitool, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "fu" = ( /obj/effect/turf_decal/tile/yellow/half{ dir = 4 @@ -1454,12 +1465,6 @@ /obj/effect/landmark/ctf, /turf/open/space/basic, /area/space) -"gb" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "ge" = ( /obj/machinery/defibrillator_mount/directional/south, /obj/machinery/stasis, @@ -1509,10 +1514,9 @@ /obj/item/storage/dice, /turf/open/floor/iron/grimy, /area/centcom/admin) -"gr" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, +"go" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/storage/crayons, /turf/open/floor/catwalk_floor, /area/centcom/holding) "gt" = ( @@ -1534,11 +1538,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/briefing/storage) -"gD" = ( -/obj/structure/kitchenspike, -/obj/item/gun/magic/hook, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "gH" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/sofa/corp/right{ @@ -1546,6 +1545,14 @@ }, /turf/open/floor/carpet/black, /area/centcom/holding) +"gJ" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/iron, +/area/syndicate_mothership/control) "gK" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -1728,10 +1735,6 @@ }, /turf/open/floor/sepia, /area/centcom/holding) -"hz" = ( -/obj/machinery/processor, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "hB" = ( /obj/structure/closet{ anchored = 1; @@ -1763,20 +1766,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/grimy, /area/centcom/admin) -"hF" = ( -/obj/structure/closet/crate, -/obj/item/vending_refill/autodrobe, -/obj/item/stack/sheet/paperframes/fifty, -/obj/item/stack/sheet/paperframes/fifty, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "hG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -1824,9 +1813,15 @@ }, /turf/open/floor/carpet, /area/wizard_station) -"hR" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/plating/beach/sand, +"hQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/reagent_dispensers/plumbed{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/catwalk_floor, /area/centcom/holding) "hT" = ( /obj/machinery/status_display/evac/directional/east, @@ -1916,10 +1911,6 @@ }, /turf/open/floor/carpet/black, /area/centcom/holding) -"if" = ( -/obj/machinery/gibber, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "il" = ( /turf/closed/indestructible/riveted, /area/centcom/prison) @@ -4107,6 +4098,10 @@ }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) +"nk" = ( +/obj/machinery/processor, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "nl" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -4576,6 +4571,25 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/ferry) +"og" = ( +/obj/item/clothing/shoes/galoshes{ + pixel_y = -8 + }, +/obj/item/storage/belt/janitor{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/watertank/janitor{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/pushbroom{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "or" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet/chestdrawer, @@ -4807,14 +4821,23 @@ }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"pe" = ( -/obj/item/mop, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bucket, +"oZ" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, /turf/open/floor/catwalk_floor, /area/centcom/holding) "pi" = ( @@ -5220,20 +5243,27 @@ }, /turf/open/floor/iron, /area/syndicate_mothership/control) -"qb" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) -"qg" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 +"qc" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Red Team"; + network = list("thunder"); + pixel_x = 11; + pixel_y = -9; + resistance_flags = 64 }, -/obj/structure/reagent_dispensers/plumbed{ - pixel_x = 5; - pixel_y = 4 +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/tdome/arena) "qm" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/tile/neutral{ @@ -5421,14 +5451,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/supplypod/loading/ert) -"qH" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/centcom/admin) "qI" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -5558,14 +5580,6 @@ }, /turf/open/floor/iron, /area/syndicate_mothership/control) -"rf" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/syndicate_mothership/control) "rg" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -5700,16 +5714,14 @@ /obj/structure/sign/warning/securearea, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"rB" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/multitool, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) +"rC" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/centcom/admin) "rF" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, @@ -6236,6 +6248,25 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/ferry) +"tc" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "td" = ( /obj/structure/sign/departments/drop, /turf/closed/indestructible/riveted, @@ -6632,6 +6663,21 @@ }, /turf/open/floor/iron/dark, /area/centcom/ferry) +"uq" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/centcom/briefing/storage) "ut" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/tile/neutral{ @@ -7896,11 +7942,6 @@ "xA" = ( /turf/open/floor/plating/beach/sand, /area/centcom/holding) -"xC" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/turf_decal/siding/wood/corner, -/turf/open/floor/carpet/black, -/area/centcom/holding) "xF" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/carpet/black, @@ -8405,10 +8446,6 @@ }, /turf/open/floor/iron, /area/centcom/control) -"yX" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron/dark, -/area/syndicate_mothership/control) "zk" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -8857,6 +8894,12 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/wood, /area/centcom/admin) +"AQ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "AT" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/indestructible/riveted, @@ -9448,6 +9491,9 @@ }, /turf/open/floor/iron/dark, /area/centcom/evac) +"CQ" = ( +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "CR" = ( /obj/machinery/computer/security{ dir = 8 @@ -9669,25 +9715,6 @@ "Di" = ( /turf/closed/indestructible/riveted, /area/ai_multicam_room) -"Dk" = ( -/obj/item/clothing/shoes/galoshes{ - pixel_y = -8 - }, -/obj/item/storage/belt/janitor{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/watertank/janitor{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/pushbroom{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/machinery/duct, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "Dl" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -11079,27 +11106,6 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/centcom/holding) -"GB" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/cable_coil, -/obj/item/screwdriver/power, -/obj/structure/cable, -/turf/open/floor/iron, -/area/centcom/admin/storage) "GC" = ( /obj/structure/table, /obj/structure/bedsheetbin, @@ -11498,29 +11504,6 @@ }, /turf/open/floor/iron/white, /area/tdome/tdomeobserve) -"Hi" = ( -/obj/machinery/recharge_station, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) -"Hj" = ( -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/food/fishmeat, -/obj/item/food/fishmeat, -/obj/item/food/fishmeat, -/obj/item/food/fishmeat, -/obj/item/food/fishmeat, -/obj/item/food/meat/slab/rawcrab, -/obj/item/food/meat/slab/rawcrab, -/obj/item/food/meat/slab/rawcrab, -/obj/item/food/meat/slab/rawcrab, -/obj/item/food/meat/slab/rawcrab, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "Hk" = ( /obj/machinery/door/poddoor{ id = "thunderdome"; @@ -11654,6 +11637,10 @@ /obj/structure/mirror/directional/east, /turf/open/floor/iron/white, /area/tdome/tdomeobserve) +"Hy" = ( +/obj/machinery/recharge_station, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "HA" = ( /obj/structure/sink{ dir = 4; @@ -12459,27 +12446,6 @@ }, /turf/open/floor/iron, /area/tdome/tdomeadmin) -"Jg" = ( -/obj/machinery/camera{ - c_tag = "Red Team"; - network = list("thunder"); - pixel_x = 11; - pixel_y = -9; - resistance_flags = 64 - }, -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/tdome/arena) "Jh" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -12502,27 +12468,6 @@ }, /turf/open/floor/iron, /area/tdome/arena) -"Jl" = ( -/obj/machinery/camera{ - c_tag = "Green Team"; - network = list("thunder"); - pixel_x = 12; - pixel_y = -10; - resistance_flags = 64 - }, -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/tdome/arena) "Jm" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -12675,10 +12620,6 @@ "JI" = ( /turf/closed/indestructible/fakeglass, /area/tdome/tdomeadmin) -"JJ" = ( -/obj/machinery/photocopier, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "JK" = ( /obj/structure/chair/wood{ dir = 8 @@ -13771,13 +13712,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/centcom/admin) -"MA" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) "MB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13821,6 +13755,12 @@ }, /turf/open/floor/wood, /area/wizard_station) +"MG" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron, +/area/centcom/ferry) "MH" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -13850,6 +13790,10 @@ name = "Guest House Entrance" }, /area/centcom/holding) +"MS" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/carpet/black, +/area/centcom/holding) "MU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/wood, @@ -13998,21 +13942,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/centcom/admin) -"Ns" = ( -/obj/machinery/autolathe, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) -"Nt" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) -"Nz" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "NB" = ( /turf/open/floor/plating/ironsand{ color = "#525252"; @@ -14054,12 +13983,6 @@ "NO" = ( /turf/open/floor/iron/dark, /area/centcom/supplypod) -"NP" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "NU" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom" @@ -14070,6 +13993,27 @@ }, /turf/open/floor/iron, /area/centcom/control) +"NW" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Green Team"; + network = list("thunder"); + pixel_x = 12; + pixel_y = -10; + resistance_flags = 64 + }, +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/tdome/arena) "NX" = ( /obj/machinery/light/directional/west, /turf/open/floor/wood/large, @@ -14419,6 +14363,12 @@ }, /turf/open/floor/iron, /area/centcom/supplypod/loading/four) +"Pw" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/duct, +/obj/item/clothing/suit/apron, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "Pz" = ( /obj/structure/table/reinforced, /obj/item/paper/pamphlet/centcom/visitor_info, @@ -14478,6 +14428,16 @@ /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/admin) +"PI" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 11; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "PK" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -14485,6 +14445,11 @@ }, /turf/open/floor/iron, /area/centcom/supplypod/loading/one) +"PO" = ( +/obj/structure/kitchenspike, +/obj/item/gun/magic/hook, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "PP" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, /obj/item/food/grown/chili, @@ -14739,6 +14704,10 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/sepia, /area/centcom/holding) +"Rc" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "Re" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -14771,24 +14740,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/wood/parquet, /area/centcom/holding) -"Ri" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/centcom/briefing) "Rj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -14813,10 +14764,6 @@ }, /turf/open/floor/iron/grimy, /area/centcom/admin) -"Rm" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron/recharge_floor, -/area/syndicate_mothership/control) "Ro" = ( /obj/structure/table/wood, /obj/item/storage/box/donkpockets, @@ -14896,6 +14843,11 @@ }, /turf/open/floor/sepia, /area/centcom/holding) +"RF" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/black, +/area/centcom/holding) "RI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -15072,6 +15024,12 @@ /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/admin/storage) +"Sy" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "Sz" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -15244,6 +15202,29 @@ }, /turf/open/floor/wood/large, /area/centcom/holding) +"Tf" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open{ + name = "freezer" + }, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/berries, +/obj/item/food/grown/berries, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cherries, +/obj/item/food/grown/cherries, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/food/grown/redbeet, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "Th" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -15282,6 +15263,10 @@ }, /turf/open/floor/iron/grimy, /area/centcom/admin) +"Ts" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/dark, +/area/syndicate_mothership/control) "Tv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/stone, @@ -15364,6 +15349,16 @@ }, /turf/open/floor/stone, /area/centcom/holding) +"TL" = ( +/obj/item/mop, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "TM" = ( /obj/effect/turf_decal/tile/yellow/half{ dir = 4 @@ -15603,6 +15598,12 @@ }, /turf/open/floor/iron/dark, /area/centcom/admin) +"UE" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "UG" = ( /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/siding/wood{ @@ -15845,6 +15846,10 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark, /area/centcom/admin) +"VI" = ( +/obj/machinery/autolathe, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "VK" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, @@ -15933,15 +15938,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/plating/beach/sand, /area/centcom/holding) -"VX" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/landmark/start/nukeop, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/syndicate_mothership/control) "VZ" = ( /obj/structure/closet/secure_closet/ert_med, /obj/structure/sign/directions/medical{ @@ -15991,10 +15987,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/freezer, /area/syndicate_mothership/control) -"Wk" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "Wm" = ( /obj/item/kirbyplants{ icon_state = "plant-21" @@ -16003,11 +15995,6 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/wood, /area/centcom/admin) -"Wp" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/storage/crayons, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "Wq" = ( /obj/machinery/modular_computer/console/preset/id/centcom, /obj/machinery/computer/security/telescreen{ @@ -16031,15 +16018,6 @@ }, /turf/open/floor/iron, /area/tdome/arena_source) -"Ws" = ( -/obj/machinery/vending/coffee{ - default_price = 0; - extra_price = 0; - fair_market_price = 0; - name = "\improper Jim Norton's Quebecois Coffee" - }, -/turf/open/floor/wood/large, -/area/centcom/holding) "Wt" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -16057,11 +16035,6 @@ /obj/effect/landmark/ert_spawn, /turf/open/floor/iron/dark, /area/centcom/briefing) -"Wz" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/rcl/pre_loaded, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) "WA" = ( /obj/item/kirbyplants{ icon_state = "plant-10" @@ -16293,6 +16266,10 @@ }, /turf/open/floor/iron/dark, /area/centcom/admin) +"XA" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) "XD" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -16443,6 +16420,24 @@ "Ya" = ( /turf/closed/indestructible/riveted, /area/centcom/briefing/storage) +"Yc" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/centcom/briefing) "Yg" = ( /obj/structure/table/wood, /obj/machinery/recharger, @@ -16566,21 +16561,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/centcom/supplypod) -"Yw" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/centcom/briefing/storage) "Yx" = ( /obj/effect/turf_decal/tile/yellow/half{ dir = 4 @@ -16612,6 +16592,10 @@ "YC" = ( /turf/open/floor/wood/large, /area/centcom/holding) +"YF" = ( +/obj/machinery/gibber, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "YG" = ( /obj/item/radio{ pixel_x = 5; @@ -16658,6 +16642,13 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/centcom/admin) +"YM" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "YQ" = ( /obj/structure/table/wood, /obj/item/toy/cards/deck/cas{ @@ -16673,6 +16664,13 @@ "YU" = ( /turf/closed/indestructible/riveted, /area/centcom/admin/storage) +"YW" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) "YZ" = ( /obj/structure/chair{ dir = 8 @@ -16734,6 +16732,10 @@ /obj/item/storage/box/holy/follower, /turf/open/floor/wood/large, /area/centcom/holding) +"Zo" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/catwalk_floor, +/area/centcom/holding) "Zp" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -16790,24 +16792,9 @@ /turf/open/floor/grass, /area/centcom/holding) "Zw" = ( -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/turf/open/floor/catwalk_floor, -/area/centcom/holding) +/obj/machinery/light/directional/north, +/turf/open/floor/iron/recharge_floor, +/area/syndicate_mothership/control) "Zy" = ( /obj/structure/bed/dogbed/cayenne{ name = "Paprika's bed" @@ -34399,9 +34386,9 @@ dY dY dY Nd -eH -qb -if +Tf +Zo +YF Nd OL Di @@ -34624,7 +34611,7 @@ pZ sh sh pZ -rf +gJ vv wm tv @@ -34656,9 +34643,9 @@ fg fg Nd Nd -Hj -at -hz +oZ +CQ +nk Nd OL Di @@ -34877,11 +34864,11 @@ kt nz pZ RA -rf +gJ sf te pZ -rf +gJ vw wn tw @@ -34913,9 +34900,9 @@ Bn PP pK fO -Zw -at -Wk +tc +CQ +dF Nd OL Di @@ -35134,11 +35121,11 @@ ng ng pZ pZ -rf +gJ sg tf pZ -rf +gJ vx wn tQ @@ -35170,9 +35157,9 @@ fq fq fq TJ -at -Nt -gD +CQ +Rc +PO Nd OL Di @@ -35392,8 +35379,8 @@ pF qa pZ pZ -VX -VX +sh +sh pZ rg Qd @@ -36191,12 +36178,12 @@ Qc Nd RD QL -ff -MA -bL -bL -xC -ff +YW +dW +MS +MS +RF +YW QL pL pL @@ -36684,7 +36671,7 @@ nz ll nz ng -Rm +Zw xG xG zx @@ -37200,7 +37187,7 @@ nz ng xK xG -yX +Ts zy ng OL @@ -37474,7 +37461,7 @@ YC gK Rv ZR -Ws +dc fO yg yg @@ -37484,7 +37471,7 @@ yg yg fe xA -hR +XA xA fg OL @@ -42369,11 +42356,11 @@ Oi dY dY Nd -JJ -Hi -Nz -gb -Wp +ev +Hy +YM +UE +go Nd OL OL @@ -42626,11 +42613,11 @@ Nd dY Qc Nd -hF -at -at -gr -Wz +dh +CQ +CQ +AQ +dN Nd OL OL @@ -42883,11 +42870,11 @@ Nd fg fg Nd -rB -at -at -at -Ns +ft +CQ +CQ +CQ +VI Nd OL OL @@ -43401,8 +43388,8 @@ YC YC Kz fO -NP -Dk +Sy +og Nd OL aa @@ -43658,8 +43645,8 @@ YC YC YC cN -at -pe +CQ +TL Nd OL aa @@ -45696,7 +45683,7 @@ ZY fO df Zt -ed +fK RL Zk OF @@ -45712,7 +45699,7 @@ MC MC MC fO -qg +hQ eb eW Gt @@ -45953,7 +45940,7 @@ fg Nd gk Zt -ed +fK RL UZ ep @@ -45969,7 +45956,7 @@ Nd Nd Nd Nd -aT +Pw yg yg ZZ @@ -46226,7 +46213,7 @@ dY Qc dY Nd -ck +PI uI Ov MX @@ -54150,7 +54137,7 @@ gM Rl Br Xq -qH +rC On Oy hE @@ -54939,7 +54926,7 @@ vo Zs XW OX -Ri +Yc gO aa aa @@ -55702,7 +55689,7 @@ UD mD su ws -bm +MG mD Xv AI @@ -56208,7 +56195,7 @@ WX Ur aZ YU -GB +fr Ub aw YU @@ -57532,7 +57519,7 @@ Ii Ep IB IV -Jg +qc IV IV Jv @@ -57763,7 +57750,7 @@ mD wg pS Uj -Yw +uq Ua pS VM @@ -63186,7 +63173,7 @@ Iq Ep IM Jb -Jl +NW Jb Jb Jy diff --git a/_maps/map_files/generic/CentCom_skyrat.dmm b/_maps/map_files/generic/CentCom_skyrat.dmm index 3920041a6a1..ef150176a06 100644 --- a/_maps/map_files/generic/CentCom_skyrat.dmm +++ b/_maps/map_files/generic/CentCom_skyrat.dmm @@ -144,7 +144,7 @@ "cd" = ( /obj/effect/turf_decal/tile/green, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/centcom/ferry) "ct" = ( @@ -4204,7 +4204,7 @@ icon_state = "plant-21" }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/wood, /area/centcom/admin) "qe" = ( @@ -8731,7 +8731,7 @@ /turf/open/floor/iron, /area/centcom/briefing/storage) "AS" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -9416,7 +9416,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -14750,7 +14750,7 @@ /turf/open/floor/iron/dark, /area/centcom/briefing) "Uf" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, diff --git a/_maps/map_files/generic/CentCom_skyrat_z2.dmm b/_maps/map_files/generic/CentCom_skyrat_z2.dmm index 227ff9a873d..7bd45c99c07 100644 --- a/_maps/map_files/generic/CentCom_skyrat_z2.dmm +++ b/_maps/map_files/generic/CentCom_skyrat_z2.dmm @@ -10369,7 +10369,7 @@ /area/centcom/interlink) "rMb" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/centcom/ncvtitan) "rNe" = ( @@ -12075,7 +12075,7 @@ /obj/item/encryptionkey/headset_cargo, /obj/item/encryptionkey/headset_cargo, /obj/item/encryptionkey/headset_cargo, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/centcom/ncvtitan) "xYw" = ( diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index de30c1f92e2..4580df93574 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -181,7 +181,7 @@ /area/security/prison) "abE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) @@ -1979,7 +1979,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) @@ -2164,7 +2164,7 @@ /turf/open/floor/plating, /area/construction/mining/aux_base) "ann" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel) @@ -2723,7 +2723,7 @@ /turf/open/floor/wood, /area/service/library) "aqs" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -2949,7 +2949,7 @@ }, /obj/effect/turf_decal/siding/thinplating/dark, /obj/structure/table, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) @@ -3089,7 +3089,7 @@ /turf/open/floor/iron, /area/hallway/secondary/command) "asd" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) @@ -3622,7 +3622,7 @@ /turf/open/floor/iron/dark, /area/hallway/secondary/entry) "auO" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/cafeteria{ dir = 5 @@ -4043,7 +4043,7 @@ /turf/open/floor/iron, /area/hallway/primary/tram/center) "awJ" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/firealarm/directional/south, /obj/structure/cable, @@ -7195,7 +7195,7 @@ /turf/open/floor/plating, /area/service/chapel) "aRB" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -7779,7 +7779,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/commons/vacant_room/office) @@ -8409,7 +8409,7 @@ "bgo" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/storage) @@ -8828,7 +8828,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/explab) @@ -9485,7 +9485,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/gun/syringe, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -9775,7 +9775,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/carpet, /area/command/heads_quarters/hos) @@ -10214,7 +10214,7 @@ "bUF" = ( /obj/machinery/vending/hydronutrients, /obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/hydroponics) @@ -10317,7 +10317,7 @@ /area/science/lab) "bWR" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/hallway/primary/tram/right) @@ -10923,7 +10923,7 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "cmu" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) @@ -13309,7 +13309,7 @@ /turf/open/floor/iron, /area/security/checkpoint/engineering) "dfo" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/cable, /turf/open/floor/iron, @@ -13594,7 +13594,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/art) @@ -13646,7 +13646,7 @@ /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) "dmC" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/structure/cable, @@ -14019,7 +14019,7 @@ /obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) @@ -14403,7 +14403,7 @@ /area/medical/morgue) "dCy" = ( /obj/structure/closet/radiation, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, @@ -14918,7 +14918,7 @@ /obj/item/reagent_containers/spray/cleaner{ pixel_x = 9 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/genetics) @@ -14966,7 +14966,7 @@ /obj/machinery/computer/prisoner/management{ dir = 4 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/security/warden) @@ -15369,7 +15369,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/pharmacy) @@ -15524,7 +15524,7 @@ /turf/open/floor/iron, /area/commons/lounge) "dYq" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -16067,7 +16067,7 @@ /turf/open/floor/iron, /area/science/research) "ehO" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/duct, /obj/structure/cable, /turf/open/floor/iron/freezer, @@ -16121,7 +16121,7 @@ /area/service/bar) "eiC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/dark, @@ -16811,7 +16811,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/science) @@ -16952,7 +16952,7 @@ /obj/effect/turf_decal/trimline/yellow/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -17004,7 +17004,7 @@ "ewQ" = ( /obj/machinery/mechpad, /obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/robotics/mechbay) @@ -18769,7 +18769,7 @@ /obj/item/coin/plasma, /obj/item/paper/fluff/gateway, /obj/item/melee/chainofcommand, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain) @@ -19048,7 +19048,7 @@ /obj/item/stock_parts/capacitor, /obj/item/stock_parts/manipulator, /obj/item/stock_parts/manipulator, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/lab) @@ -19534,7 +19534,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron, @@ -19690,7 +19690,7 @@ /turf/open/floor/iron, /area/hallway/secondary/command) "fxm" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/rack, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 6 @@ -19820,7 +19820,7 @@ /area/maintenance/tram/mid) "fzs" = ( /obj/effect/turf_decal/siding/wood, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/window/reinforced/spawner, /obj/structure/cable, /turf/open/floor/wood, @@ -20863,7 +20863,7 @@ /turf/open/floor/glass, /area/commons/dorms) "fSg" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) @@ -20969,7 +20969,7 @@ dir = 4 }, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/medical/coldroom) @@ -21414,7 +21414,7 @@ /turf/open/floor/iron, /area/hallway/primary/tram/left) "gds" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 }, @@ -21577,7 +21577,7 @@ "ggc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -22330,7 +22330,7 @@ /turf/closed/wall, /area/hallway/secondary/construction/engineering) "guy" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/radshelter/service) @@ -23701,7 +23701,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/hallway) "gVi" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/carpet, /area/security/detectives_office) @@ -23750,7 +23750,7 @@ /turf/open/floor/iron, /area/security/prison/safe) "gWv" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/wood, /area/service/library) @@ -24014,7 +24014,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) @@ -24734,7 +24734,7 @@ /turf/open/floor/iron, /area/science/research) "hpU" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 }, @@ -25099,7 +25099,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -25292,7 +25292,7 @@ /turf/open/floor/iron, /area/science/misc_lab) "hAP" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; name = "Air to Distro" @@ -26064,7 +26064,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) @@ -26267,7 +26267,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/science/misc_lab) @@ -26352,7 +26352,7 @@ "hXq" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/robotics/lab) @@ -26370,7 +26370,7 @@ /turf/open/floor/iron, /area/cargo/miningdock) "hYq" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -26453,7 +26453,7 @@ dir = 6; network = list("ss13","Security") }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/maintenance/department/security) @@ -26497,7 +26497,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) @@ -26595,7 +26595,7 @@ codes_txt = "patrol;next_patrol=1-TunnelLeft"; location = "10-TunnelLeftBottom" }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/maintenance/tram/left) @@ -27753,7 +27753,7 @@ /turf/open/floor/iron/white, /area/security/prison) "iyk" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/structure/cable, /turf/open/floor/iron, @@ -28802,7 +28802,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) @@ -28934,7 +28934,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/item/radio/intercom/prison/directional/west, /turf/open/floor/iron, @@ -29287,7 +29287,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29458,7 +29458,7 @@ /area/maintenance/port/fore) "jbA" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) @@ -29875,7 +29875,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/engine_smes) @@ -30076,7 +30076,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ areastring = "/area/engineering/supermatter" }, /obj/structure/cable, @@ -30824,7 +30824,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/tcommsat/computer) @@ -31491,7 +31491,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/command/gateway) @@ -31529,7 +31529,7 @@ /obj/item/clothing/gloves/color/fyellow, /obj/item/multitool, /obj/effect/spawner/random/maintenance, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/tools) @@ -31717,7 +31717,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/tram/left) "jVY" = ( @@ -32477,7 +32477,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) "khB" = ( @@ -32953,7 +32953,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/processing) @@ -33337,7 +33337,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/security/prison/garden) @@ -33734,7 +33734,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "kIO" = ( @@ -33777,7 +33777,7 @@ "kJv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet, /area/command/bridge) @@ -34082,7 +34082,7 @@ /area/cargo/storage) "kQp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) @@ -34112,7 +34112,7 @@ /turf/open/floor/iron, /area/cargo/miningdock) "kRe" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/structure/cable, @@ -35630,7 +35630,7 @@ /turf/open/floor/grass, /area/science/genetics) "lxj" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/grimy, /area/service/chapel/office) @@ -36438,7 +36438,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/medical) @@ -36484,7 +36484,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit) "lOH" = ( @@ -36906,7 +36906,7 @@ /obj/structure/railing{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/glass/reinforced, /area/ai_monitored/turret_protected/aisat/hallway) @@ -37614,7 +37614,7 @@ dir = 9 }, /obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/table/glass, /obj/machinery/microwave, @@ -37901,7 +37901,7 @@ /turf/open/floor/iron/dark, /area/medical/virology) "mtD" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -38006,7 +38006,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/tram/center) @@ -39104,7 +39104,7 @@ /turf/open/floor/iron, /area/security/checkpoint/medical) "mTZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -39342,7 +39342,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/science/cytology) @@ -39726,7 +39726,7 @@ /area/maintenance/port/aft) "nfm" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -40424,7 +40424,7 @@ /area/hallway/primary/tram/right) "nvV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/interrogation) @@ -41053,7 +41053,7 @@ /turf/open/floor/iron, /area/security/prison) "nIu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 }, @@ -42301,7 +42301,7 @@ /turf/open/floor/iron, /area/hallway/secondary/entry) "oex" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -42602,7 +42602,7 @@ /turf/open/floor/iron, /area/cargo/storage) "oko" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Solar - Aft Port Control"; dir = 1 @@ -42737,7 +42737,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/treatment_center) @@ -43127,7 +43127,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/command) @@ -43789,7 +43789,7 @@ /area/service/chapel/office) "oGS" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/maintenance/department/medical) @@ -45166,7 +45166,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/qm) @@ -45374,7 +45374,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit) "pkn" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -45456,7 +45456,7 @@ "pml" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/hop) @@ -46629,7 +46629,7 @@ /area/hallway/primary/tram/left) "pGL" = ( /obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/modular_computer/console/preset/engineering{ dir = 1 }, @@ -47151,7 +47151,7 @@ /turf/open/floor/iron, /area/engineering/break_room) "pPX" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/hallway/primary/central) @@ -47209,7 +47209,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/landmark/start/hangover, /obj/structure/cable, /turf/open/floor/iron, @@ -47336,7 +47336,7 @@ /area/hallway/secondary/construction/engineering) "pTL" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -47636,7 +47636,7 @@ }, /obj/structure/table/reinforced, /obj/machinery/recharger, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/escape) @@ -47773,7 +47773,7 @@ /area/commons/storage/primary) "qdM" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) @@ -49268,7 +49268,7 @@ /turf/closed/wall/r_wall, /area/ai_monitored/command/nuke_storage) "qJz" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 }, @@ -49594,7 +49594,7 @@ dir = 4 }, /obj/machinery/duct, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/service/janitor) @@ -49784,7 +49784,7 @@ /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) "qVc" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, /obj/structure/cable, /turf/open/floor/iron, @@ -50027,7 +50027,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/service/hydroponics/garden) @@ -50461,7 +50461,7 @@ /turf/open/floor/iron/smooth, /area/maintenance/port/fore) "rhN" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/radshelter/civil) @@ -51495,7 +51495,7 @@ /area/mine/explored) "rGo" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/maintenance/central) @@ -51796,7 +51796,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) @@ -52482,7 +52482,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit) "rYI" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, @@ -53093,7 +53093,7 @@ /turf/open/floor/iron/smooth, /area/maintenance/tram/left) "sly" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/security/prison/mess) @@ -53390,7 +53390,7 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/foyer) "srn" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/table/reinforced, /obj/item/reagent_containers/spray/cleaner, /obj/item/blood_filter, @@ -54664,7 +54664,7 @@ "sRl" = ( /obj/structure/table, /obj/item/beacon, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/teleporter) @@ -55091,7 +55091,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Secure - Tech Storage"; dir = 6 @@ -55777,7 +55777,7 @@ /turf/open/floor/plating, /area/maintenance/disposal) "tjk" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/vending/wardrobe/science_wardrobe, /obj/machinery/firealarm/directional/west, /obj/structure/cable, @@ -56615,7 +56615,7 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/service/bar) @@ -56652,7 +56652,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/closet/athletic_mixed, /obj/structure/cable, /turf/open/floor/iron/cafeteria, @@ -57540,7 +57540,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) @@ -57560,7 +57560,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/trunk/multiz/down, /obj/structure/cable, /turf/open/floor/iron, @@ -57792,7 +57792,7 @@ c_tag = "Solar - Starboard Control"; dir = 5 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard) @@ -58044,7 +58044,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) @@ -58488,7 +58488,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/office) @@ -58864,7 +58864,7 @@ /turf/open/space/basic, /area/ai_monitored/turret_protected/aisat_interior) "unx" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -58998,7 +58998,7 @@ /turf/open/floor/iron, /area/hallway/primary/tram/right) "uqd" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 }, @@ -59434,7 +59434,7 @@ /area/maintenance/central) "uyN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/morgue) @@ -59802,7 +59802,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/prison/workout) @@ -60196,7 +60196,7 @@ /area/service/bar) "uOd" = ( /obj/machinery/food_cart, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/service/kitchen) @@ -62236,7 +62236,7 @@ /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/tram/center) "vLq" = ( @@ -62336,7 +62336,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint) @@ -62609,7 +62609,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) @@ -63354,7 +63354,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) @@ -63934,7 +63934,7 @@ /turf/open/floor/iron/smooth, /area/maintenance/department/cargo) "wtu" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/cafeteria{ dir = 5 @@ -64094,7 +64094,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/office) @@ -65078,7 +65078,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) @@ -65213,7 +65213,7 @@ "wOm" = ( /obj/structure/table, /obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/maint) @@ -65286,7 +65286,7 @@ "wPq" = ( /obj/structure/table, /obj/item/folder/white, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Science - Server Room"; dir = 6; @@ -66165,7 +66165,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) @@ -66585,7 +66585,7 @@ /turf/open/floor/plating, /area/cargo/miningdock) "xos" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/service/kitchen/coldroom) @@ -67895,7 +67895,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, @@ -68209,7 +68209,7 @@ /area/commons/vacant_room/office) "xUE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/hallway/primary/tram/left) @@ -68413,7 +68413,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Science - Xenobiology East"; dir = 9; @@ -68603,7 +68603,7 @@ c_tag = "Hallway - Central Escape Wing Entry"; dir = 5 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/exit) @@ -68712,7 +68712,7 @@ /area/service/hydroponics) "ycp" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/security/prison/rec) @@ -68955,7 +68955,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) diff --git a/_maps/map_files/tramstation/tramstation_skyrat.dmm b/_maps/map_files/tramstation/tramstation_skyrat.dmm index 6b249d31dc1..bde56444c43 100644 --- a/_maps/map_files/tramstation/tramstation_skyrat.dmm +++ b/_maps/map_files/tramstation/tramstation_skyrat.dmm @@ -292,7 +292,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/hallway/primary/port) @@ -447,7 +447,7 @@ /area/security/prison) "abE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) @@ -1149,7 +1149,7 @@ /turf/open/floor/wood, /area/service/library) "aeP" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -3100,7 +3100,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) @@ -3156,13 +3156,13 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/service/bar) "amw" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -3340,7 +3340,7 @@ /turf/open/floor/plating, /area/construction/mining/aux_base) "ann" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel) @@ -3400,7 +3400,7 @@ /area/tcommsat/computer) "anw" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/service/library) "anz" = ( @@ -3492,7 +3492,7 @@ /area/commons/dorms) "anP" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/grimy, /area/service/chapel/office) "anQ" = ( @@ -3650,7 +3650,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet, /area/command/heads_quarters/hos) "aov" = ( @@ -3671,7 +3671,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) "aoz" = ( @@ -3695,7 +3695,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/office) "aoB" = ( @@ -3749,7 +3749,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/showroomfloor, /area/security/warden) "aoL" = ( @@ -3819,7 +3819,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) "aoW" = ( @@ -3859,13 +3859,13 @@ dir = 4 }, /obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/courtroom) "aoZ" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/commons/storage/primary) "apa" = ( @@ -3915,7 +3915,7 @@ /obj/item/multitool, /obj/effect/spawner/random/maintenance, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) "aph" = ( @@ -3928,7 +3928,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) "api" = ( @@ -3944,7 +3944,7 @@ /obj/item/chair/plastic{ pixel_y = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/service/lawoffice) "apj" = ( @@ -4002,7 +4002,7 @@ /area/service/kitchen) "aps" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/command/gateway) "apt" = ( @@ -4089,7 +4089,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/qm) "apJ" = ( @@ -4114,7 +4114,7 @@ /obj/item/paper/fluff/gateway, /obj/item/melee/chainofcommand, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) "apL" = ( @@ -4220,7 +4220,7 @@ dir = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/trunk/multiz/down, /turf/open/floor/iron, /area/cargo/sorting) @@ -4344,7 +4344,7 @@ /area/command/bridge) "aql" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/security/detectives_office) "aqp" = ( @@ -4378,7 +4378,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/construction/mining/aux_base) "aqw" = ( @@ -4406,7 +4406,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/office) "aqA" = ( @@ -4481,7 +4481,7 @@ /obj/structure/table, /obj/item/beacon, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/command/teleporter) "aqI" = ( @@ -4560,7 +4560,7 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/checkpoint/escape) "aqS" = ( @@ -4785,7 +4785,7 @@ }, /obj/effect/turf_decal/siding/thinplating/dark, /obj/structure/table, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) @@ -4796,7 +4796,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable, /obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/security/checkpoint) "arr" = ( @@ -4804,7 +4804,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/service/hydroponics/garden) "ars" = ( @@ -4826,7 +4826,7 @@ /obj/machinery/mechpad, /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/science/robotics/mechbay) "ary" = ( @@ -4971,7 +4971,7 @@ /obj/item/stock_parts/capacitor, /obj/item/stock_parts/manipulator, /obj/item/stock_parts/manipulator, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/white, /area/science/lab) "arT" = ( @@ -5040,7 +5040,7 @@ /turf/open/floor/iron, /area/hallway/secondary/command) "asd" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) @@ -5243,7 +5243,7 @@ pixel_x = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark, /area/science/genetics) "asI" = ( @@ -5275,7 +5275,7 @@ /area/medical/treatment_center) "asN" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/cafeteria{ dir = 5 }, @@ -5294,7 +5294,7 @@ dir = 10 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /mob/living/simple_animal/pet/cat/runtime, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -5537,7 +5537,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/science/cytology) "atB" = ( @@ -6447,7 +6447,7 @@ /turf/open/floor/wood, /area/service/bar) "awJ" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/firealarm/directional/south, /obj/structure/cable, @@ -6655,7 +6655,7 @@ /turf/open/floor/iron/dark, /area/science/xenobiology) "axz" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/vending/wardrobe/science_wardrobe, /obj/machinery/firealarm/directional/west, @@ -6704,7 +6704,7 @@ "axI" = ( /obj/machinery/vending/hydronutrients, /obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/hydroponics) @@ -7540,7 +7540,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -8985,7 +8985,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/dorms) "aFH" = ( @@ -10878,7 +10878,7 @@ "aQS" = ( /obj/structure/cable, /obj/machinery/light/small/directional/north, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/central/secondary) @@ -11079,7 +11079,7 @@ /area/security/checkpoint) "aRT" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/starboard/secondary) @@ -13014,7 +13014,7 @@ /turf/open/floor/plating, /area/science/research) "bwi" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -13067,7 +13067,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/checkpoint/medical) "bxq" = ( @@ -13594,7 +13594,7 @@ /area/service/kitchen/coldroom) "bJD" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14942,7 +14942,7 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "cmu" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) @@ -15735,7 +15735,7 @@ /turf/open/floor/iron, /area/hallway/secondary/construction/engineering) "cFH" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -15927,7 +15927,7 @@ /area/maintenance/fore/secondary) "cKE" = ( /obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/modular_computer/console/preset/engineering{ dir = 1 @@ -16067,7 +16067,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/engine_smes) "cOx" = ( @@ -16478,7 +16478,7 @@ /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/effect/turf_decal/bot, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/science/robotics/lab) "cVp" = ( @@ -16914,7 +16914,7 @@ /turf/open/floor/iron, /area/security/checkpoint/medical) "dfo" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/cable, /turf/open/floor/iron, @@ -16968,7 +16968,7 @@ /area/science/research) "dhi" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Solar - Aft Port Control"; dir = 1 @@ -18063,7 +18063,7 @@ /area/medical/morgue) "dCy" = ( /obj/structure/closet/radiation, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, @@ -19886,7 +19886,7 @@ "enT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/medical/morgue) "eoe" = ( @@ -19919,7 +19919,7 @@ /area/hallway/secondary/exit) "eos" = ( /obj/effect/turf_decal/bot, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/secondary/command) "eov" = ( @@ -20211,7 +20211,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/science) @@ -20311,7 +20311,7 @@ /obj/effect/turf_decal/trimline/yellow/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -21163,7 +21163,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) @@ -22270,7 +22270,7 @@ /area/engineering/main) "fpx" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 }, @@ -23635,7 +23635,7 @@ /turf/open/floor/glass, /area/commons/dorms) "fSg" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) @@ -24748,7 +24748,7 @@ /turf/closed/wall, /area/hallway/secondary/construction/engineering) "guy" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/radshelter/service) @@ -25087,7 +25087,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/cargo/storage) "gBW" = ( @@ -25863,7 +25863,7 @@ /area/maintenance/central) "gQw" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "gQF" = ( @@ -28647,7 +28647,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/science/misc_lab) @@ -28863,7 +28863,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/security/brig) "iaZ" = ( @@ -29863,7 +29863,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/landmark/start/hangover, /turf/open/floor/iron, @@ -30545,7 +30545,7 @@ "iJB" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/window/reinforced/spawner, /turf/open/floor/wood, /area/service/theater) @@ -31040,7 +31040,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /obj/machinery/vending/autodrobe/all_access, /turf/open/floor/iron, /area/commons/dorms) @@ -31432,7 +31432,7 @@ /area/commons/dorms) "jbA" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) @@ -31826,7 +31826,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/secondary/entry) "jlN" = ( @@ -32622,7 +32622,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/tcommsat/computer) @@ -33080,7 +33080,7 @@ /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) "jOl" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/table/reinforced, /obj/item/reagent_containers/spray/cleaner, @@ -34213,7 +34213,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) "khB" = ( @@ -34485,7 +34485,7 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/freezer, /area/medical/coldroom) "kni" = ( @@ -34527,7 +34527,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/apc/auto_name/north{ +/obj/machinery/power/apc/auto_name/directional/north{ areastring = "/area/engineering/supermatter" }, /obj/structure/cable, @@ -34623,7 +34623,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) "kpe" = ( @@ -34951,7 +34951,7 @@ /turf/closed/wall/r_wall, /area/science/lab) "kvs" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -35263,7 +35263,7 @@ /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/tram/left) "kAQ" = ( @@ -38332,7 +38332,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/bluespace_vendor/north, +/obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit) "lOJ" = ( @@ -39746,7 +39746,7 @@ /area/science/genetics) "mwf" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) @@ -40001,7 +40001,7 @@ dir = 9 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/science/explab) "mCp" = ( @@ -40289,7 +40289,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/item/gun/syringe, /obj/item/clothing/glasses/hud/health, @@ -40326,7 +40326,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/white, /area/science/research) "mKh" = ( @@ -40867,7 +40867,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/machinery/bluespace_vendor/east, +/obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/secondary/entry) "mWg" = ( @@ -42374,7 +42374,7 @@ /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) "nFd" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -42828,7 +42828,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/closet/athletic_mixed, /turf/open/floor/iron/cafeteria, /area/commons/locker) @@ -43006,7 +43006,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/medical/pharmacy) "nTd" = ( @@ -43404,7 +43404,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 @@ -43502,7 +43502,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Secure - Tech Storage"; dir = 6 @@ -43876,7 +43876,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/treatment_center) @@ -44327,7 +44327,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/command) @@ -44679,7 +44679,7 @@ /turf/open/floor/iron, /area/engineering/main) "oDj" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 5 @@ -46751,7 +46751,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/maintenance/tram/mid) @@ -47141,7 +47141,7 @@ }, /obj/machinery/light/directional/north, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/break_room) "pCN" = ( @@ -47370,7 +47370,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/maintenance/port/central) "pGa" = ( @@ -48429,7 +48429,7 @@ /area/security/prison) "qdM" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) @@ -49257,7 +49257,7 @@ /area/ai_monitored/turret_protected/ai) "qxK" = ( /obj/machinery/food_cart, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/service/kitchen) @@ -50047,7 +50047,7 @@ /obj/effect/turf_decal/trimline/purple/filled/warning{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron, /area/service/janitor) @@ -50920,7 +50920,7 @@ /turf/open/floor/iron, /area/hallway/primary/tram/center) "rhN" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/radshelter/civil) @@ -51700,7 +51700,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/command/heads_quarters/hop) "ryJ" = ( @@ -51796,7 +51796,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/processing) "rAy" = ( @@ -52945,7 +52945,7 @@ /obj/structure/table, /obj/structure/cable, /obj/item/folder/white, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/camera{ c_tag = "Science - Server Room"; dir = 6; @@ -53304,7 +53304,7 @@ c_tag = "Solar - Starboard Control"; dir = 5 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/maintenance/solars/starboard) "siT" = ( @@ -54698,7 +54698,7 @@ /turf/open/floor/plating/airless, /area/mine/explored) "sNm" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; @@ -56660,7 +56660,7 @@ /turf/open/floor/iron, /area/maintenance/tram/mid) "txZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -57348,7 +57348,7 @@ pixel_y = -32 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) @@ -57801,7 +57801,7 @@ "tVF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/security/interrogation) "tWb" = ( @@ -57968,7 +57968,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) @@ -58348,7 +58348,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/glass/reinforced, /area/ai_monitored/turret_protected/aisat/hallway) "ufR" = ( @@ -61181,7 +61181,7 @@ /area/science/research) "vsD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) @@ -61218,7 +61218,7 @@ "vvo" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, /area/science/storage) @@ -62265,7 +62265,7 @@ dir = 5 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit) "vNM" = ( @@ -62481,7 +62481,7 @@ /area/security/prison) "vRS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -63292,7 +63292,7 @@ /turf/open/floor/plating, /area/maintenance/central) "wiN" = ( -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/service/kitchen/coldroom) @@ -63489,7 +63489,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/camera{ c_tag = "Science - Xenobiology East"; dir = 9; @@ -63826,7 +63826,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/central) @@ -64080,7 +64080,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "wyz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/medical) @@ -64304,7 +64304,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/carpet, /area/command/bridge) "wCt" = ( @@ -64890,7 +64890,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/bluespace_vendor/south, +/obj/machinery/bluespace_vendor/directional/south, /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -64997,7 +64997,7 @@ "wOm" = ( /obj/structure/table, /obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/maint) @@ -65275,7 +65275,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron, /area/maintenance/tram/left) @@ -66751,7 +66751,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/art) "xAV" = ( @@ -67687,7 +67687,7 @@ /area/hallway/primary/tram/right) "xSQ" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67928,7 +67928,7 @@ /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload_foyer) "xWZ" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 @@ -68298,7 +68298,7 @@ /turf/closed/wall, /area/maintenance/department/crew_quarters/dorms) "yeu" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 }, diff --git a/_maps/shuttles/aux_base_default.dmm b/_maps/shuttles/aux_base_default.dmm index 518098190ce..5ce720e0759 100644 --- a/_maps/shuttles/aux_base_default.dmm +++ b/_maps/shuttles/aux_base_default.dmm @@ -71,9 +71,8 @@ /turf/open/floor/plating, /area/shuttle/auxiliary_base) "X" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Auxiliary Base"; - dir = 1; network = list("auxbase") }, /obj/structure/mining_shuttle_beacon, diff --git a/_maps/shuttles/aux_base_small.dmm b/_maps/shuttles/aux_base_small.dmm index 8ef0080b6b1..82c3f17e06e 100644 --- a/_maps/shuttles/aux_base_small.dmm +++ b/_maps/shuttles/aux_base_small.dmm @@ -34,8 +34,7 @@ /turf/open/floor/plating, /area/shuttle/auxiliary_base) "h" = ( -/obj/machinery/camera{ - dir = 1; +/obj/machinery/camera/directional/south{ network = list("auxbase") }, /obj/structure/mining_shuttle_beacon, diff --git a/_maps/shuttles/cargo_delta.dmm b/_maps/shuttles/cargo_delta.dmm index 2e16108e1a0..4dd4cf9350b 100644 --- a/_maps/shuttles/cargo_delta.dmm +++ b/_maps/shuttles/cargo_delta.dmm @@ -103,9 +103,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/light{ - dir = 8 - }, /obj/machinery/button/door/directional/west{ id = "cargoload"; name = "Loading Doors"; @@ -116,6 +113,7 @@ name = "Loading Doors"; pixel_y = 8 }, +/obj/machinery/light/directional/west, /turf/open/floor/iron, /area/shuttle/supply) "q" = ( diff --git a/_maps/shuttles/emergency_bar.dmm b/_maps/shuttles/emergency_bar.dmm index a87647a7ec6..5850c5c0082 100644 --- a/_maps/shuttles/emergency_bar.dmm +++ b/_maps/shuttles/emergency_bar.dmm @@ -166,7 +166,7 @@ /turf/open/floor/iron/grimy, /area/shuttle/escape) "aG" = ( -/obj/structure/chair/stool/directional/east{ +/obj/structure/chair/stool/directional/west{ can_buckle = 1 }, /turf/open/floor/iron/grimy, diff --git a/_maps/shuttles/emergency_casino.dmm b/_maps/shuttles/emergency_casino.dmm index 6638fd742b0..f6350229296 100644 --- a/_maps/shuttles/emergency_casino.dmm +++ b/_maps/shuttles/emergency_casino.dmm @@ -476,7 +476,7 @@ /turf/open/floor/mineral/titanium, /area/shuttle/escape) "mi" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /obj/machinery/light/directional/west, /turf/open/floor/carpet/green, /area/shuttle/escape) @@ -562,7 +562,7 @@ /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "ok" = ( -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /turf/open/floor/carpet/green, /area/shuttle/escape) "oz" = ( @@ -896,7 +896,7 @@ /turf/open/floor/carpet/green, /area/shuttle/escape) "yy" = ( -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -1132,7 +1132,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /turf/open/floor/wood, /area/shuttle/escape) "Gf" = ( @@ -1566,7 +1566,7 @@ /turf/open/floor/carpet/green, /area/shuttle/escape) "Yc" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /turf/open/floor/wood, /area/shuttle/escape) "Yp" = ( @@ -1779,7 +1779,7 @@ mz BY ly Wp -BD +gm yc YF yc @@ -1827,8 +1827,8 @@ Xl Xl Xl Lb -ji -ji +Ws +Ws Wp mz Fi @@ -1865,7 +1865,7 @@ Lz Lz Lz Lz -Td +qx Zj qx Lz @@ -1931,8 +1931,8 @@ aS YS AA RZ -kU -kU +kz +kz RZ Ab mz @@ -2057,8 +2057,8 @@ RZ RZ RZ RZ -kU -kU +kz +kz RZ Ab mz @@ -2075,7 +2075,7 @@ gI gI gI gI -gg +jS Xv jS gI @@ -2162,9 +2162,9 @@ kA Wp Wp Wp -ji -ji -ji +Ws +Ws +Ws Wp mz DA diff --git a/_maps/shuttles/emergency_clown.dmm b/_maps/shuttles/emergency_clown.dmm index 21543570bf0..84d4b3de595 100644 --- a/_maps/shuttles/emergency_clown.dmm +++ b/_maps/shuttles/emergency_clown.dmm @@ -169,9 +169,7 @@ /area/shuttle/escape) "aJ" = ( /obj/item/toy/snappop/phoenix, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/bluespace, /area/shuttle/escape) "aK" = ( @@ -182,9 +180,7 @@ "aL" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/item/toy/snappop/phoenix, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/bluespace, /area/shuttle/escape) "aM" = ( @@ -224,7 +220,7 @@ /area/shuttle/escape) "aR" = ( /obj/item/toy/snappop/phoenix, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/bluespace, /area/shuttle/escape) "aS" = ( @@ -256,16 +252,11 @@ /turf/open/floor/mineral/bananium, /area/shuttle/escape) "aY" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, +/obj/machinery/light/small/directional/west, /turf/open/floor/mineral/bananium, /area/shuttle/escape) "aZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/mineral/bananium, /area/shuttle/escape) "bb" = ( @@ -277,9 +268,7 @@ }, /obj/item/crowbar, /obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/mineral/bananium, /area/shuttle/escape) "bc" = ( diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index 49878a433ff..326abf4a957 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -434,9 +434,6 @@ /obj/structure/bed/roller, /obj/machinery/iv_drip, /obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -444,6 +441,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron/white, /area/shuttle/escape) "aO" = ( @@ -536,9 +534,7 @@ pixel_y = -5 }, /obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron, /area/shuttle/escape) "ba" = ( @@ -1266,7 +1262,7 @@ /area/shuttle/escape/brig) "cH" = ( /obj/effect/turf_decal/bot, -/obj/machinery/light/small, +/obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/shuttle/escape) "hg" = ( diff --git a/_maps/shuttles/emergency_monastery.dmm b/_maps/shuttles/emergency_monastery.dmm index 58bb73084fc..2393c4111e9 100644 --- a/_maps/shuttles/emergency_monastery.dmm +++ b/_maps/shuttles/emergency_monastery.dmm @@ -84,7 +84,7 @@ /turf/open/space/basic, /area/shuttle/escape) "bb" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron/dark, @@ -135,7 +135,7 @@ /area/shuttle/escape) "bn" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/shuttle/escape) @@ -240,9 +240,8 @@ "cL" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/light/small/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Dock"; - dir = 1; network = list("ss13","monastery") }, /obj/effect/turf_decal/tile/neutral{ @@ -279,9 +278,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "cY" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Transit"; - dir = 1; network = list("ss13","monastery") }, /obj/machinery/power/smes, @@ -324,7 +322,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/airalarm/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, @@ -380,9 +378,8 @@ /area/shuttle/escape) "dJ" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Dining Room"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -424,9 +421,8 @@ /obj/structure/table/wood, /obj/item/folder/yellow, /obj/item/pen, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Library"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -447,9 +443,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "eg" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Asteroid Dock Port"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/plating/asteroid, @@ -538,9 +533,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "fi" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Asteroid Dock Staboard"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/plating/asteroid, @@ -751,16 +745,15 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "iJ" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, /area/shuttle/escape) "iK" = ( /obj/structure/flora/ausbushes/leafybush, /obj/structure/flora/ausbushes/reedbush, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Asteroid Primary Entrance"; - dir = 1; network = list("ss13","monastery") }, /turf/open/floor/plating/asteroid, @@ -786,9 +779,8 @@ /turf/open/floor/plating, /area/shuttle/escape) "iV" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Cloister Port"; - dir = 4; network = list("ss13","monastery") }, /obj/structure/cable, @@ -883,9 +875,8 @@ /area/shuttle/escape/brig) "ka" = ( /obj/structure/flora/ausbushes/fernybush, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Asteroid Starboard Aft"; - dir = 1; network = list("ss13","monastery") }, /obj/effect/turf_decal/sand, @@ -899,7 +890,7 @@ /area/shuttle/escape) "ki" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Chapel Crematorium"; network = list("ss13","monastery") }, @@ -1078,9 +1069,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "mK" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Chapel Office Tunnel"; - dir = 1; network = list("ss13","monastery") }, /obj/effect/turf_decal/sand, @@ -1187,9 +1177,8 @@ /area/shuttle/escape) "ov" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Chapel Starboard"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -1233,7 +1222,8 @@ /area/shuttle/escape) "oI" = ( /obj/machinery/airalarm/unlocked{ - pixel_y = 23 + pixel_y = 23; + dir = 1 }, /turf/open/floor/iron/dark, /area/shuttle/escape) @@ -1424,7 +1414,7 @@ /area/shuttle/escape) "qU" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Chapel Port Access"; network = list("ss13","monastery") }, @@ -1569,7 +1559,7 @@ /area/shuttle/escape) "sz" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Chapel Starboard Access"; network = list("ss13","monastery") }, @@ -1668,7 +1658,7 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "tV" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1825,9 +1815,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "vW" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Chapel Office"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -1936,7 +1925,7 @@ /area/shuttle/escape) "wM" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Monastery Cloister Fore"; network = list("ss13","monastery") }, @@ -1959,9 +1948,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "wS" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Secondary Dock"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -2042,9 +2030,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Archives Access Tunnel"; - dir = 4; network = list("ss13","monastery") }, /obj/effect/turf_decal/tile/neutral{ @@ -2444,7 +2431,7 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "Dc" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light/small/directional/west, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/cable, @@ -2468,9 +2455,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "Dr" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Kitchen"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/iron, @@ -2559,9 +2545,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "Ep" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Art Storage"; - dir = 4; network = list("ss13","monastery") }, /obj/structure/cable, @@ -2850,7 +2835,7 @@ /obj/item/kirbyplants{ icon_state = "plant-22" }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Monastery Archives Fore"; network = list("ss13","monastery") }, @@ -2871,9 +2856,8 @@ /area/shuttle/escape) "IT" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Cloister Starboard"; - dir = 8; network = list("ss13","monastery") }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2920,9 +2904,8 @@ name = "skeletal minibar" }, /obj/item/book/codex_gigas, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Archives Aft"; - dir = 1; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -2930,7 +2913,7 @@ "Jv" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/camera{ +/obj/machinery/camera/directional/north{ c_tag = "Monastery Garden"; network = list("ss13","monastery") }, @@ -3123,9 +3106,8 @@ /area/shuttle/escape) "LC" = ( /obj/machinery/light/small/directional/west, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Chapel Port"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -3173,9 +3155,8 @@ /area/shuttle/escape) "LV" = ( /obj/machinery/light/small/directional/south, -/obj/machinery/camera{ +/obj/machinery/camera/directional/south{ c_tag = "Monastery Cloister Aft"; - dir = 1; network = list("ss13","monastery") }, /obj/effect/turf_decal/tile/neutral{ @@ -3212,9 +3193,8 @@ /area/shuttle/escape) "Md" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Archives Starboard"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -3468,9 +3448,8 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Cemetary"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -3788,9 +3767,8 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "RJ" = ( -/obj/machinery/camera{ +/obj/machinery/camera/directional/east{ c_tag = "Monastery Art Gallery"; - dir = 8; network = list("ss13","monastery") }, /turf/open/floor/carpet, @@ -4040,7 +4018,7 @@ }, /obj/structure/table/wood, /obj/machinery/airalarm/directional/west, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/shuttle/escape) @@ -4074,9 +4052,8 @@ /area/shuttle/escape) "UJ" = ( /obj/machinery/light/small/directional/west, -/obj/machinery/camera{ +/obj/machinery/camera/directional/west{ c_tag = "Monastery Archives Port"; - dir = 4; network = list("ss13","monastery") }, /turf/open/floor/iron/dark, @@ -4510,7 +4487,7 @@ /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "Zr" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 diff --git a/_maps/shuttles/emergency_zeta.dmm b/_maps/shuttles/emergency_zeta.dmm index dc777906bb0..03c17adfe58 100644 --- a/_maps/shuttles/emergency_zeta.dmm +++ b/_maps/shuttles/emergency_zeta.dmm @@ -44,9 +44,7 @@ /area/shuttle/escape) "j" = ( /obj/item/kirbyplants/photosynthetic, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/plating/abductor, /area/shuttle/escape) "k" = ( @@ -77,15 +75,11 @@ /turf/open/floor/plating/abductor, /area/shuttle/escape) "p" = ( -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/light/directional/west, /turf/open/floor/plating/abductor, /area/shuttle/escape) "q" = ( -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/abductor, /area/shuttle/escape) "r" = ( @@ -123,9 +117,7 @@ "w" = ( /obj/structure/table/abductor, /obj/item/storage/box/alienhandcuffs, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/abductor, /area/shuttle/escape) "x" = ( @@ -136,10 +128,8 @@ /turf/open/floor/plating/abductor, /area/shuttle/escape) "y" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/item/kirbyplants/photosynthetic, +/obj/machinery/light/directional/west, /turf/open/floor/plating/abductor, /area/shuttle/escape) "z" = ( @@ -160,9 +150,7 @@ /area/shuttle/escape) "C" = ( /obj/structure/chair/office, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/abductor, /area/shuttle/escape) "D" = ( @@ -226,14 +214,12 @@ /turf/open/floor/plating/abductor, /area/shuttle/escape) "L" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/structure/closet/abductor, /obj/item/clothing/under/misc/pj/blue, /obj/item/clothing/shoes/sneakers/white, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/glasses/eyepatch, +/obj/machinery/light/directional/west, /turf/open/floor/plating/abductor, /area/shuttle/escape) "N" = ( @@ -258,15 +244,13 @@ /area/shuttle/escape) "Q" = ( /obj/item/kirbyplants/photosynthetic, -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/plating/abductor, /area/shuttle/escape) "S" = ( /obj/item/lazarus_injector, /obj/structure/table/abductor, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/light/directional/east, /turf/open/floor/plating/abductor, /area/shuttle/escape) "T" = ( diff --git a/_maps/shuttles/ferry_fancy.dmm b/_maps/shuttles/ferry_fancy.dmm index 4d0da893ce6..fbc07a0383f 100644 --- a/_maps/shuttles/ferry_fancy.dmm +++ b/_maps/shuttles/ferry_fancy.dmm @@ -90,7 +90,7 @@ /turf/open/floor/pod/dark, /area/shuttle/transport) "q" = ( -/obj/machinery/light, +/obj/machinery/light/directional/south, /turf/open/floor/pod/light, /area/shuttle/transport) "r" = ( diff --git a/_maps/shuttles/infiltrator_advanced.dmm b/_maps/shuttles/infiltrator_advanced.dmm index 981d517428b..5740ec2ace3 100644 --- a/_maps/shuttles/infiltrator_advanced.dmm +++ b/_maps/shuttles/infiltrator_advanced.dmm @@ -413,7 +413,7 @@ pixel_y = 26 }, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/structure/cable, @@ -1516,7 +1516,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/syndicate{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/mineral/plastitanium/red, @@ -2137,7 +2137,8 @@ }, /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm index 8dcd9463085..9ab7584d781 100644 --- a/_maps/shuttles/mining_kilo.dmm +++ b/_maps/shuttles/mining_kilo.dmm @@ -287,7 +287,7 @@ /turf/open/floor/plating, /area/shuttle/mining/large) "J" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/bot, diff --git a/_maps/shuttles/mining_large.dmm b/_maps/shuttles/mining_large.dmm index b760e76ebea..9c1cda35886 100644 --- a/_maps/shuttles/mining_large.dmm +++ b/_maps/shuttles/mining_large.dmm @@ -407,7 +407,7 @@ /turf/open/floor/plating, /area/shuttle/mining/large) "E" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index cfec9989f8a..54cf1a7454f 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -165,7 +165,7 @@ }, /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -182,7 +182,7 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "aq" = ( -/obj/structure/chair/stool/directional/north, +/obj/structure/chair/stool/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -546,7 +546,8 @@ }, /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -654,7 +655,7 @@ /area/shuttle/pirate) "bC" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/light/small/directional/east, @@ -746,7 +747,7 @@ /turf/open/floor/iron/dark, /area/shuttle/pirate) "bO" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -991,7 +992,8 @@ /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/bot, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -1108,7 +1110,8 @@ /area/shuttle/pirate) "OD" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -1139,7 +1142,8 @@ dir = 4 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ diff --git a/_maps/shuttles/pirate_enclave.dmm b/_maps/shuttles/pirate_enclave.dmm index 7604564f668..b2d296d6a10 100644 --- a/_maps/shuttles/pirate_enclave.dmm +++ b/_maps/shuttles/pirate_enclave.dmm @@ -1708,7 +1708,7 @@ "Fy" = ( /obj/structure/tank_holder/anesthetic, /obj/structure/railing, -/obj/machinery/defibrillator_mount/loaded/directional/east, +/obj/machinery/defibrillator_mount/directional/east, /turf/open/floor/iron, /area/shuttle/syndicate/slaver) "FC" = ( diff --git a/_maps/shuttles/pirate_silverscale.dmm b/_maps/shuttles/pirate_silverscale.dmm index 29416febe37..b6d1c3f499f 100644 --- a/_maps/shuttles/pirate_silverscale.dmm +++ b/_maps/shuttles/pirate_silverscale.dmm @@ -113,7 +113,7 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "hu" = ( -/obj/structure/chair/stool/directional/east, +/obj/structure/chair/stool/directional/west, /turf/open/floor/iron/dark, /area/shuttle/pirate) "hW" = ( @@ -676,7 +676,7 @@ /area/shuttle/pirate) "QU" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ pixel_y = 4 diff --git a/_maps/shuttles/ruin_caravan_victim.dmm b/_maps/shuttles/ruin_caravan_victim.dmm index 05fd40c1947..154d42ddca8 100644 --- a/_maps/shuttles/ruin_caravan_victim.dmm +++ b/_maps/shuttles/ruin_caravan_victim.dmm @@ -29,7 +29,8 @@ /area/shuttle/caravan/freighter1) "bg" = ( /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -356,7 +357,8 @@ pixel_y = 5 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, @@ -398,7 +400,7 @@ /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -706,7 +708,8 @@ "Ib" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -881,7 +884,7 @@ /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -914,7 +917,7 @@ /area/shuttle/caravan/freighter1) "Qs" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -988,7 +991,7 @@ /area/shuttle/caravan/freighter1) "UW" = ( /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, diff --git a/_maps/shuttles/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin_pirate_cutter.dmm index be67c06ad7b..d43c74a2dcf 100644 --- a/_maps/shuttles/ruin_pirate_cutter.dmm +++ b/_maps/shuttles/ruin_pirate_cutter.dmm @@ -190,7 +190,8 @@ "jo" = ( /obj/structure/table, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/item/ammo_box/a40mm, /obj/effect/turf_decal/tile/neutral{ @@ -702,7 +703,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/structure/cable, @@ -711,7 +712,8 @@ "DY" = ( /obj/structure/closet/crate/secure/loot, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/dark, /area/shuttle/caravan/pirate) diff --git a/_maps/shuttles/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin_syndicate_dropship.dmm index b01e6b08327..6abd42b9e54 100644 --- a/_maps/shuttles/ruin_syndicate_dropship.dmm +++ b/_maps/shuttles/ruin_syndicate_dropship.dmm @@ -305,7 +305,8 @@ "EO" = ( /obj/structure/chair/comfy/shuttle, /obj/machinery/airalarm/syndicate{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, diff --git a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm index abcc874d6f9..0d09952dc32 100644 --- a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm +++ b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm @@ -21,9 +21,8 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/caravan/syndicate1) "fh" = ( -/obj/machinery/camera/xray{ +/obj/machinery/camera/xray/directional/west{ c_tag = "External View"; - dir = 4; network = list("caravansyndicate1"); pixel_x = 32 }, diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 55fc8891cae..369211ece19 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -46,7 +46,8 @@ /obj/machinery/light/small/built/directional/north, /obj/structure/bed, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/item/bedsheet, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -166,7 +167,8 @@ pixel_y = 6 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/item/storage/backpack/duffelbag/med/surgery{ pixel_y = 4 @@ -225,7 +227,8 @@ dir = 1 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -759,7 +762,8 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/light/small/built/directional/north, /obj/structure/cable, @@ -808,7 +812,8 @@ dir = 1 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -873,7 +878,7 @@ anchored = 1 }, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron/white/side{ @@ -957,7 +962,7 @@ /obj/structure/table/reinforced, /obj/item/wrench, /obj/item/crowbar, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, /area/shuttle/abandoned/medbay) @@ -1457,7 +1462,8 @@ pixel_x = 4 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/item/flashlight/pen{ pixel_x = -6; @@ -1525,7 +1531,8 @@ req_access = null }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /turf/open/floor/iron/white, /area/shuttle/abandoned/medbay) @@ -1544,7 +1551,7 @@ /obj/item/stack/sheet/mineral/plasma{ amount = 10 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -1904,7 +1911,7 @@ dir = 4; pixel_x = -24 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/blue{ dir = 1 }, diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm index 42b9bf98634..422e360d261 100644 --- a/_maps/shuttles/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship_delta.dmm @@ -84,7 +84,7 @@ /obj/item/bedsheet/centcom, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/wood, @@ -96,7 +96,7 @@ /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/wood, @@ -122,7 +122,7 @@ /area/shuttle/abandoned/bar) "ar" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /obj/structure/spider/stickyweb, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -143,7 +143,7 @@ "at" = ( /obj/machinery/light/small/built/directional/west, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/spider/stickyweb, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -379,7 +379,8 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/directional/south, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/firealarm/directional/south, /obj/structure/spider/stickyweb, @@ -394,7 +395,7 @@ /area/shuttle/abandoned/crew) "aU" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -924,7 +925,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/light/small/built/directional/east, @@ -1042,7 +1043,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/directional/west, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -1109,7 +1110,7 @@ /area/shuttle/abandoned/engine) "cl" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /turf/open/floor/plating, @@ -1465,7 +1466,8 @@ }, /obj/item/radio/off, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/dark, @@ -1817,7 +1819,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/built/directional/east, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/structure/spider/stickyweb, @@ -1856,7 +1858,7 @@ "dJ" = ( /obj/machinery/light/small/built/directional/west, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/shuttle/abandoned/cargo) @@ -1941,7 +1943,7 @@ /obj/machinery/iv_drip, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/spider/stickyweb, /obj/structure/cable, /turf/open/floor/iron/white, @@ -2119,7 +2121,8 @@ /obj/item/extinguisher, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/turf_decal/box/white/corners{ dir = 4 diff --git a/_maps/shuttles/whiteship_kilo.dmm b/_maps/shuttles/whiteship_kilo.dmm index ecfe432c475..b1b03903784 100644 --- a/_maps/shuttles/whiteship_kilo.dmm +++ b/_maps/shuttles/whiteship_kilo.dmm @@ -145,7 +145,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/mineral/titanium/yellow, @@ -448,7 +448,7 @@ pixel_y = 32 }, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/plating, @@ -863,7 +863,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -990,7 +990,7 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned/bridge) "bS" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -1040,7 +1040,7 @@ /obj/structure/bed, /obj/effect/turf_decal/stripes/line, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/machinery/light/small/directional/north, @@ -1060,7 +1060,8 @@ pixel_y = 8 }, /obj/machinery/airalarm/all_access{ - pixel_y = 22 + pixel_y = 22; + dir = 1 }, /turf/open/floor/carpet, /area/shuttle/abandoned/crew) @@ -1402,7 +1403,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, @@ -1656,7 +1657,7 @@ /obj/machinery/microwave{ pixel_y = 5 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/bar) diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index af4e0017d99..dcef4caaf7f 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -169,7 +169,8 @@ "au" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/dirt/dust, @@ -204,9 +205,6 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "aw" = ( -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/bed, /obj/item/bedsheet/brown, @@ -221,6 +219,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "ax" = ( @@ -548,12 +547,10 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "aX" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -572,6 +569,7 @@ dir = 8 }, /obj/structure/cable, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "aY" = ( @@ -645,7 +643,8 @@ "bc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -856,7 +855,7 @@ /obj/structure/bedsheetbin, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -936,7 +935,7 @@ /obj/machinery/light/built/directional/east, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /turf/open/floor/iron/dark, @@ -1011,9 +1010,6 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/engine) "bJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, /obj/item/storage/belt/utility, @@ -1023,6 +1019,7 @@ }, /obj/item/radio/off, /obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/shuttle/abandoned/engine) "bL" = ( @@ -1091,7 +1088,7 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -1238,7 +1235,7 @@ "cc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/decal/cleanable/dirt/dust, @@ -1257,7 +1254,7 @@ /obj/item/pen{ pixel_x = -4 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/item/camera{ pixel_x = 12; pixel_y = 6 @@ -1271,7 +1268,8 @@ "ce" = ( /obj/structure/table, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, /obj/item/folder/blue{ @@ -1669,15 +1667,12 @@ /area/shuttle/abandoned/engine) "cJ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) "cL" = ( /obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, /obj/item/reagent_containers/food/drinks/bottle/vodka{ pixel_y = 12 }, @@ -1701,6 +1696,7 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/shuttle/abandoned/bar) "cM" = ( @@ -1866,7 +1862,8 @@ dir = 4 }, /obj/machinery/airalarm/all_access{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/light/small/built/directional/north, /obj/structure/cable, @@ -2030,14 +2027,12 @@ "dm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ dir = 8 }, +/obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/shuttle/abandoned/bar) "do" = ( @@ -2282,7 +2277,7 @@ /area/shuttle/abandoned/engine) "dJ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/closet/crate, /obj/item/stack/sheet/iron/twenty, /obj/item/stack/sheet/glass{ @@ -2712,7 +2707,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm/all_access{ - dir = 8; + dir = 4; pixel_x = 24 }, /obj/effect/turf_decal/tile/green, diff --git a/_maps/shuttles/whiteship_tram.dmm b/_maps/shuttles/whiteship_tram.dmm index da111ba820f..d3b644c6a9b 100644 --- a/_maps/shuttles/whiteship_tram.dmm +++ b/_maps/shuttles/whiteship_tram.dmm @@ -142,7 +142,7 @@ "az" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/abandoned/engine) "aA" = ( @@ -192,7 +192,7 @@ /area/shuttle/abandoned/cargo) "aI" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/abandoned/cargo) @@ -938,7 +938,7 @@ "cN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/red/directional/north, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/table, /obj/item/storage/box/gloves{ @@ -972,7 +972,7 @@ /area/shuttle/abandoned/medbay) "cR" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/mineral/titanium/tiled/blue, /area/shuttle/abandoned/bridge) diff --git a/_maps/skyrat/shuttles/slaver_syndie.dmm b/_maps/skyrat/shuttles/slaver_syndie.dmm index 28220762fd1..8e08ba7a344 100644 --- a/_maps/skyrat/shuttles/slaver_syndie.dmm +++ b/_maps/skyrat/shuttles/slaver_syndie.dmm @@ -880,7 +880,7 @@ dir = 1 }, /obj/structure/table/optable, -/obj/machinery/defibrillator_mount/loaded/directional/north, +/obj/machinery/defibrillator_mount/directional/north, /turf/open/floor/iron/dark/blue/side, /area/shuttle/syndicate/slaver) "LU" = ( diff --git a/_maps/templates/hilbertshotel.dmm b/_maps/templates/hilbertshotel.dmm index 64b0c8f0176..6dca19f8a9a 100644 --- a/_maps/templates/hilbertshotel.dmm +++ b/_maps/templates/hilbertshotel.dmm @@ -127,7 +127,7 @@ /turf/open/indestructible/hoteltile, /area/hilbertshotel) "B" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /turf/open/indestructible/hotelwood, /area/hilbertshotel) "C" = ( diff --git a/_maps/templates/hilbertshotellore.dmm b/_maps/templates/hilbertshotellore.dmm index b8975ba960a..b5d70ee5aca 100644 --- a/_maps/templates/hilbertshotellore.dmm +++ b/_maps/templates/hilbertshotellore.dmm @@ -117,7 +117,7 @@ /turf/open/indestructible/hotelwood, /area/hilbertshotel) "aA" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /turf/open/indestructible/hotelwood, /area/hilbertshotel) "aB" = ( @@ -250,7 +250,7 @@ /turf/open/indestructible/hotelwood, /area/hilbertshotel) "aY" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/vomit, /obj/effect/mob_spawn/human/doctorhilbert, diff --git a/_maps/templates/holodeck_lounge.dmm b/_maps/templates/holodeck_lounge.dmm index 6bda6ab7ddd..f812660aae2 100644 --- a/_maps/templates/holodeck_lounge.dmm +++ b/_maps/templates/holodeck_lounge.dmm @@ -79,7 +79,7 @@ }, /area/template_noop) "l" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /obj/structure/window/reinforced{ dir = 4; layer = 2.9 @@ -155,7 +155,7 @@ }, /area/template_noop) "C" = ( -/obj/structure/chair/stool/bar/directional/east, +/obj/structure/chair/stool/bar/directional/west, /turf/open/floor/holofloor/carpet, /area/template_noop) "D" = ( @@ -285,7 +285,7 @@ }, /area/template_noop) "V" = ( -/obj/structure/chair/stool/bar/directional/north, +/obj/structure/chair/stool/bar/directional/south, /turf/open/floor/holofloor{ dir = 9; icon_state = "wood" diff --git a/_maps/templates/shelter_3.dmm b/_maps/templates/shelter_3.dmm index 6a3fc686dd4..66703347439 100644 --- a/_maps/templates/shelter_3.dmm +++ b/_maps/templates/shelter_3.dmm @@ -31,9 +31,7 @@ "g" = ( /obj/structure/table/wood/fancy/black, /obj/machinery/chem_dispenser/drinks/beer, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/survivalpod) "h" = ( diff --git a/code/__DEFINES/directional.dm b/code/__DEFINES/directional.dm new file mode 100644 index 00000000000..953228ed422 --- /dev/null +++ b/code/__DEFINES/directional.dm @@ -0,0 +1,17 @@ +/// Create directional subtypes for a path to simplify mapping. +#define MAPPING_DIRECTIONAL_HELPERS(path, offset) ##path/directional/north {\ + dir = NORTH; \ + pixel_y = offset; \ +} \ +##path/directional/south {\ + dir = SOUTH; \ + pixel_y = -offset; \ +} \ +##path/directional/east {\ + dir = EAST; \ + pixel_x = offset; \ +} \ +##path/directional/west {\ + dir = WEST; \ + pixel_x = -offset; \ +} diff --git a/code/__HELPERS/atoms.dm b/code/__HELPERS/atoms.dm index 43c57618853..34f42951501 100644 --- a/code/__HELPERS/atoms.dm +++ b/code/__HELPERS/atoms.dm @@ -71,33 +71,35 @@ if(centered) . += world.icon_size -///Check if there is already a wall item on the turf loc -/proc/got_wall_item(loc, dir, check_external = 0) - var/locdir = get_step(loc, dir) - for(var/obj/checked_object in loc) - if(is_type_in_typecache(checked_object, GLOB.WALLITEMS) && check_external != 2) +/** + * Check if there is already a wall item on the turf loc + * floor_loc = floor tile in front of the wall + * dir_toward_wall = direction from the floor tile in front of the wall towards the wall + * check_external = truthy if we should be checking against items coming out of the wall, rather than visually on top of the wall. +**/ +/proc/check_wall_item(floor_loc, dir_toward_wall, check_external = 0) + var/wall_loc = get_step(floor_loc, dir_toward_wall) + for(var/obj/checked_object in floor_loc) + if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_INTERIOR) && !check_external) //Direction works sometimes - if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_INVERSE)) - if(checked_object.dir == turn(dir, 180)) - return TRUE - else if(checked_object.dir == dir) + if(checked_object.dir == dir_toward_wall) return TRUE //Some stuff doesn't use dir properly, so we need to check pixel instead //That's exactly what get_turf_pixel() does - if(get_turf_pixel(checked_object) == locdir) + if(get_turf_pixel(checked_object) == wall_loc) return TRUE - if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_EXTERNAL) && check_external) - if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_INVERSE)) - if(checked_object.dir == turn(dir, 180)) - return TRUE - else if(checked_object.dir == dir) + if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_EXTERIOR) && check_external) + if(checked_object.dir == dir_toward_wall) return TRUE - //Some stuff is placed directly on the wallturf (signs) - for(var/obj/checked_object in locdir) - if(is_type_in_typecache(checked_object, GLOB.WALLITEMS) && check_external != 2) + //Some stuff is placed directly on the wallturf (signs). + //If we're only checking for external entities, we don't need to look though these. + if (check_external) + return FALSE + for(var/obj/checked_object in wall_loc) + if(is_type_in_typecache(checked_object, GLOB.WALLITEMS_INTERIOR)) if(checked_object.pixel_x == 0 && checked_object.pixel_y == 0) return TRUE return FALSE diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index b1270078add..46001b28c44 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -115,7 +115,8 @@ /** * Checks if that loc and dir has an item on the wall **/ -GLOBAL_LIST_INIT(WALLITEMS, typecacheof(list( +// Wall mounted machinery which are visually on the wall. +GLOBAL_LIST_INIT(WALLITEMS_INTERIOR, typecacheof(list( /obj/item/radio/intercom, /obj/item/storage/secure/safe, /obj/machinery/airalarm, @@ -123,6 +124,8 @@ GLOBAL_LIST_INIT(WALLITEMS, typecacheof(list( /obj/machinery/button, /obj/machinery/computer/security/telescreen, /obj/machinery/computer/security/telescreen/entertainment, + /obj/machinery/bluespace_vendor, + /obj/machinery/defibrillator_mount, /obj/machinery/door_timer, /obj/machinery/embedded_controller/radio/simple_vent_controller, /obj/machinery/firealarm, @@ -133,6 +136,8 @@ GLOBAL_LIST_INIT(WALLITEMS, typecacheof(list( /obj/machinery/power/apc, /obj/machinery/requests_console, /obj/machinery/status_display, + /obj/machinery/ticket_machine, + /obj/machinery/turretid, /obj/structure/extinguisher_cabinet, /obj/structure/fireaxecabinet, /obj/structure/mirror, @@ -142,14 +147,11 @@ GLOBAL_LIST_INIT(WALLITEMS, typecacheof(list( /obj/structure/sign/picture_frame ))) -GLOBAL_LIST_INIT(WALLITEMS_EXTERNAL, typecacheof(list( +// Wall mounted machinery which are visually coming out of the wall. +// These do not conflict with machinery which are visually placed on the wall. +GLOBAL_LIST_INIT(WALLITEMS_EXTERIOR, typecacheof(list( /obj/machinery/camera, /obj/machinery/light, /obj/structure/camera_assembly, /obj/structure/light_construct ))) - -GLOBAL_LIST_INIT(WALLITEMS_INVERSE, typecacheof(list( - /obj/machinery/light, - /obj/structure/light_construct - ))) diff --git a/code/game/machinery/bounty_board.dm b/code/game/machinery/bounty_board.dm index b2ba8fab281..e7ec6c80d71 100644 --- a/code/game/machinery/bounty_board.dm +++ b/code/game/machinery/bounty_board.dm @@ -19,29 +19,11 @@ GLOBAL_LIST_EMPTY(request_list) ///Text of the currently written bounty var/bounty_text = "" -/obj/machinery/bounty_board/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/bounty_board/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/bounty_board/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/bounty_board/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/bounty_board, 32) /obj/machinery/bounty_board/Initialize(mapload, ndir, building) . = ..() GLOB.allbountyboards += src - if(building) - setDir(ndir) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -32 : 32) - pixel_y = (dir & 3)? (dir ==1 ? -32 : 32) : 0 /obj/machinery/bounty_board/Destroy() GLOB.allbountyboards -= src @@ -180,6 +162,7 @@ GLOBAL_LIST_EMPTY(request_list) icon_state = "request_kiosk" custom_materials = list(/datum/material/iron=14000, /datum/material/glass=8000) result_path = /obj/machinery/bounty_board + pixel_shift = 32 /** * A combined all in one datum that stores everything about the request, the requester's account, as well as the requestee's account diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm index b003b40958b..7d5dd953e9a 100644 --- a/code/game/machinery/buttons.dm +++ b/code/game/machinery/buttons.dm @@ -22,8 +22,6 @@ . = ..() if(built) setDir(ndir) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 panel_open = TRUE update_appearance() @@ -188,21 +186,7 @@ var/specialfunctions = OPEN // Bitflag, see assembly file var/sync_doors = TRUE -/obj/machinery/button/door/directional/north - dir = SOUTH - pixel_y = 24 - -/obj/machinery/button/door/directional/south - dir = NORTH - pixel_y = -24 - -/obj/machinery/button/door/directional/east - dir = WEST - pixel_x = 24 - -/obj/machinery/button/door/directional/west - dir = EAST - pixel_x = -24 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/button/door, 24) /obj/machinery/button/door/indestructible resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF @@ -322,6 +306,7 @@ icon_state = "button" result_path = /obj/machinery/button custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT) + pixel_shift = 24 /obj/machinery/button/elevator name = "elevator button" diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 1edb34f77c5..609449b53fc 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -43,6 +43,12 @@ ///Represents a signel source of camera alarms about movement or camera tampering var/datum/alarm_handler/alarm_manager +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera, 0) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/autoname, 0) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/emp_proof, 0) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/motion, 0) +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/xray, 0) + /obj/machinery/camera/preset/ordnance //Bomb test site in space name = "Hardened Bomb-Test Camera" desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site. An external light is attached to the top." diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index c87e5cc2a84..96089f35328 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -10,6 +10,7 @@ icon_state = "cameracase" custom_materials = list(/datum/material/iron=400, /datum/material/glass=250) result_path = /obj/structure/camera_assembly + wall_external = TRUE /obj/structure/camera_assembly name = "camera assembly" diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm index f4201509d4c..4e6b4b3f197 100644 --- a/code/game/machinery/computer/camera.dm +++ b/code/game/machinery/computer/camera.dm @@ -279,21 +279,7 @@ var/icon_state_off = "entertainment_blank" var/icon_state_on = "entertainment" -/obj/machinery/computer/security/telescreen/entertainment/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/computer/security/telescreen/entertainment/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/computer/security/telescreen/entertainment/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/computer/security/telescreen/entertainment/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/security/telescreen/entertainment, 32) /obj/machinery/computer/security/telescreen/entertainment/Initialize(mapload) . = ..() diff --git a/code/game/machinery/defibrillator_mount.dm b/code/game/machinery/defibrillator_mount.dm index 56fbcc10e71..0e05cd2f2e5 100644 --- a/code/game/machinery/defibrillator_mount.dm +++ b/code/game/machinery/defibrillator_mount.dm @@ -18,41 +18,13 @@ /// the type of wallframe it 'disassembles' into var/wallframe_type = /obj/item/wallframe/defib_mount -/obj/machinery/defibrillator_mount/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/defibrillator_mount/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/defibrillator_mount/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/defibrillator_mount/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/defibrillator_mount, 28) /obj/machinery/defibrillator_mount/loaded/Initialize(mapload) //loaded subtype for mapping use . = ..() defib = new/obj/item/defibrillator/loaded(src) -/obj/machinery/defibrillator_mount/loaded/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/defibrillator_mount/loaded/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/defibrillator_mount/loaded/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/defibrillator_mount/loaded/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/defibrillator_mount, 28) /obj/machinery/defibrillator_mount/Destroy() if(defib) @@ -244,7 +216,7 @@ custom_materials = list(/datum/material/iron = 300, /datum/material/glass = 100) w_class = WEIGHT_CLASS_BULKY result_path = /obj/machinery/defibrillator_mount - pixel_shift = -28 + pixel_shift = 28 /obj/item/wallframe/defib_mount/charging name = "unhooked PENLITE defibrillator mount" diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index 30bef2ddf04..16601a1303b 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -10,6 +10,7 @@ icon = 'icons/obj/monitors.dmi' //ICON OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE icon_state = "fire_bitem" result_path = /obj/machinery/firealarm + pixel_shift = 26 /obj/machinery/firealarm name = "fire alarm" @@ -42,13 +43,9 @@ /* SKYRAT EDIT REMOVAL /obj/machinery/firealarm/Initialize(mapload, dir, building) . = ..() - if(dir) - src.setDir(dir) if(building) buildstage = 0 panel_open = TRUE - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 update_appearance() myarea = get_area(src) LAZYADD(myarea.firealarms, src) @@ -380,20 +377,7 @@ detecting = !detecting to_chat(user, span_notice("You [ detecting ? "enable" : "disable" ] [src]'s detecting unit!")) -/obj/machinery/firealarm/directional/north - pixel_y = 26 - -/obj/machinery/firealarm/directional/south - dir = NORTH - pixel_y = -26 - -/obj/machinery/firealarm/directional/east - dir = WEST - pixel_x = 26 - -/obj/machinery/firealarm/directional/west - dir = EAST - pixel_x = -26 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/firealarm, 26) /* * Return of Party button diff --git a/code/game/machinery/flasher.dm b/code/game/machinery/flasher.dm index 16d0274e64d..2ed8bccdaaf 100644 --- a/code/game/machinery/flasher.dm +++ b/code/game/machinery/flasher.dm @@ -17,21 +17,7 @@ var/last_flash = 0 //Don't want it getting spammed like regular flashes var/strength = 100 //How knocked down targets are when flashed. -/obj/machinery/flasher/directional/north - dir = SOUTH - pixel_y = 26 - -/obj/machinery/flasher/directional/south - dir = NORTH - pixel_y = -26 - -/obj/machinery/flasher/directional/east - dir = WEST - pixel_x = 26 - -/obj/machinery/flasher/directional/west - dir = EAST - pixel_x = -26 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/flasher, 26) /obj/machinery/flasher/portable //Portable version of the flasher. Only flashes when anchored name = "portable flasher" @@ -47,11 +33,7 @@ /obj/machinery/flasher/Initialize(mapload, ndir = 0, built = 0) . = ..() // ..() is EXTREMELY IMPORTANT, never forget to add it - if(built) - setDir(ndir) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -28 : 28) - pixel_y = (dir & 3)? (dir ==1 ? -28 : 28) : 0 - else + if(!built) bulb = new(src) @@ -216,6 +198,7 @@ icon_state = "mflash_frame" result_path = /obj/machinery/flasher var/id = null + pixel_shift = 28 /obj/item/wallframe/flasher/examine(mob/user) . = ..() diff --git a/code/game/machinery/igniter.dm b/code/game/machinery/igniter.dm index 453c205d5e7..7fef56fea05 100644 --- a/code/game/machinery/igniter.dm +++ b/code/game/machinery/igniter.dm @@ -69,21 +69,7 @@ var/last_spark = 0 var/datum/effect_system/spark_spread/spark_system -/obj/machinery/sparker/directional/north - dir = SOUTH - pixel_y = 26 - -/obj/machinery/sparker/directional/south - dir = NORTH - pixel_y = -26 - -/obj/machinery/sparker/directional/east - dir = WEST - pixel_x = 26 - -/obj/machinery/sparker/directional/west - dir = EAST - pixel_x = -26 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/sparker, 26) /obj/machinery/sparker/ordmix id = INCINERATOR_ORDMIX_IGNITER diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm index 3dd429ea635..60539798173 100644 --- a/code/game/machinery/lightswitch.dm +++ b/code/game/machinery/lightswitch.dm @@ -16,21 +16,7 @@ /obj/item/circuit_component/light_switch, )) -/obj/machinery/light_switch/directional/north - dir = SOUTH - pixel_y = 26 - -/obj/machinery/light_switch/directional/south - dir = NORTH - pixel_y = -26 - -/obj/machinery/light_switch/directional/east - dir = WEST - pixel_x = 26 - -/obj/machinery/light_switch/directional/west - dir = EAST - pixel_x = -26 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light_switch, 26) /obj/machinery/light_switch/Initialize(mapload) . = ..() diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index f8738a093c6..bab677d2472 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -193,6 +193,7 @@ GLOBAL_LIST_EMPTY(allCasters) icon_state = "newscaster" custom_materials = list(/datum/material/iron=14000, /datum/material/glass=8000) result_path = /obj/machinery/newscaster + pixel_shift = 30 /obj/machinery/newscaster @@ -221,40 +222,16 @@ GLOBAL_LIST_EMPTY(allCasters) var/datum/newscaster/feed_channel/viewing_channel = null var/allow_comments = 1 -/obj/machinery/newscaster/directional/north - pixel_y = 32 - -/obj/machinery/newscaster/directional/south - pixel_y = -28 - -/obj/machinery/newscaster/directional/east - pixel_x = 28 - -/obj/machinery/newscaster/directional/west - pixel_x = -28 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster, 30) /obj/machinery/newscaster/security_unit name = "security newscaster" securityCaster = 1 -/obj/machinery/newscaster/security_unit/directional/north - pixel_y = 32 - -/obj/machinery/newscaster/security_unit/directional/south - pixel_y = -28 - -/obj/machinery/newscaster/security_unit/directional/east - pixel_x = 28 - -/obj/machinery/newscaster/security_unit/directional/west - pixel_x = -28 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster/security_unit, 30) /obj/machinery/newscaster/Initialize(mapload, ndir, building) . = ..() - if(building) - setDir(ndir) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -32 : 32) - pixel_y = (dir & 3)? (dir ==1 ? -32 : 32) : 0 GLOB.allCasters += src unit_no = GLOB.allCasters.len diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index 56b5540c715..2f4c7aa70c2 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -878,10 +878,7 @@ DEFINE_BITFIELD(turret_flags, list( /obj/machinery/turretid/Initialize(mapload, ndir = 0, built = 0) . = ..() if(built) - setDir(ndir) locked = FALSE - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 power_change() //Checks power and initial settings /obj/machinery/turretid/Destroy() @@ -1033,6 +1030,7 @@ DEFINE_BITFIELD(turret_flags, list( icon_state = "control_frame" result_path = /obj/machinery/turretid custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT) + pixel_shift = 29 /obj/item/gun/proc/get_turret_properties() . = list() diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm index d7f794a6832..15c08766f93 100644 --- a/code/game/machinery/requests_console.dm +++ b/code/game/machinery/requests_console.dm @@ -70,21 +70,7 @@ GLOBAL_LIST_EMPTY(req_console_ckey_departments) max_integrity = 300 armor = list(MELEE = 70, BULLET = 30, LASER = 30, ENERGY = 30, BOMB = 0, BIO = 0, FIRE = 90, ACID = 90) -/obj/machinery/requests_console/directional/north - dir = SOUTH - pixel_y = 30 - -/obj/machinery/requests_console/directional/south - dir = NORTH - pixel_y = -30 - -/obj/machinery/requests_console/directional/east - dir = WEST - pixel_x = 30 - -/obj/machinery/requests_console/directional/west - dir = EAST - pixel_x = -30 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/requests_console, 30) /obj/machinery/requests_console/update_appearance(updates=ALL) . = ..() diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm index dbcbe8bdedf..2a67a78293c 100644 --- a/code/game/machinery/status_display.dm +++ b/code/game/machinery/status_display.dm @@ -42,6 +42,7 @@ icon_state = "unanchoredstatusdisplay" custom_materials = list(/datum/material/iron=14000, /datum/material/glass=8000) result_path = /obj/machinery/status_display + pixel_shift = 32 /obj/machinery/status_display/wrench_act_secondary(mob/living/user, obj/item/tool) . = ..() @@ -205,30 +206,11 @@ var/friendc = FALSE // track if Friend Computer mode var/last_picture // For when Friend Computer mode is undone - -/obj/machinery/status_display/evac/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/status_display/evac/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/status_display/evac/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/status_display/evac/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/status_display/evac, 32) //makes it go on the wall when built /obj/machinery/status_display/Initialize(mapload, ndir, building) . = ..() - if(building) - setDir(ndir) - pixel_x = NSCOMPONENT(dir) ? 0 : (dir == EAST ? -world.icon_size : world.icon_size) - pixel_y = NSCOMPONENT(dir) ? (dir == NORTH ? -world.icon_size : world.icon_size) : 0 update_appearance() /obj/machinery/status_display/evac/Initialize(mapload) @@ -396,21 +378,8 @@ AI_EMOTION_RED_GLOW = "ai_hal", ) -/obj/machinery/status_display/ai/directional/north - dir = SOUTH - pixel_y = 32 -/obj/machinery/status_display/ai/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/status_display/ai/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/status_display/ai/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/status_display/ai, 32) /obj/machinery/status_display/ai/Initialize(mapload) . = ..() diff --git a/code/game/objects/items/apc_frame.dm b/code/game/objects/items/apc_frame.dm index cea787d6f40..f03496b169a 100644 --- a/code/game/objects/items/apc_frame.dm +++ b/code/game/objects/items/apc_frame.dm @@ -1,92 +1,9 @@ -/obj/item/wallframe - icon = 'icons/obj/wallframe.dmi' - custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT*2) - flags_1 = CONDUCT_1 - inhand_icon_state = "syringe_kit" - lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi' - w_class = WEIGHT_CLASS_SMALL - var/result_path - var/inverse = 0 // For inverse dir frames like light fixtures. - var/pixel_shift //The amount of pixels - -/obj/item/wallframe/proc/try_build(turf/on_wall, mob/user) - if(get_dist(on_wall,user)>1) - return - var/ndir = get_dir(on_wall, user) - if(!(ndir in GLOB.cardinals)) - return - var/turf/T = get_turf(user) - var/area/A = get_area(T) - if(!isfloorturf(T)) - to_chat(user, span_warning("You cannot place [src] on this spot!")) - return - if(A.always_unpowered) - to_chat(user, span_warning("You cannot place [src] in this area!")) - return - if(got_wall_item(T, ndir, inverse*2)) - to_chat(user, span_warning("There's already an item on this wall!")) - return - - return TRUE - -/obj/item/wallframe/proc/attach(turf/on_wall, mob/user) - if(result_path) - playsound(src.loc, 'sound/machines/click.ogg', 75, TRUE) - user.visible_message(span_notice("[user.name] attaches [src] to the wall."), - span_notice("You attach [src] to the wall."), - span_hear("You hear clicking.")) - var/ndir = get_dir(on_wall,user) - if(inverse) - ndir = turn(ndir, 180) - - var/obj/O = new result_path(get_turf(user), ndir, TRUE) - if(pixel_shift) - switch(ndir) - if(NORTH) - O.pixel_y = pixel_shift - if(SOUTH) - O.pixel_y = -pixel_shift - if(EAST) - O.pixel_x = pixel_shift - if(WEST) - O.pixel_x = -pixel_shift - after_attach(O) - - qdel(src) - -/obj/item/wallframe/proc/after_attach(obj/O) - transfer_fingerprints_to(O) - -/obj/item/wallframe/attackby(obj/item/W, mob/user, params) - ..() - if(W.tool_behaviour == TOOL_SCREWDRIVER) - // For camera-building borgs - var/turf/T = get_step(get_turf(user), user.dir) - if(iswallturf(T)) - T.attackby(src, user, params) - - var/metal_amt = round(custom_materials[GET_MATERIAL_REF(/datum/material/iron)]/MINERAL_MATERIAL_AMOUNT) //Replace this shit later - var/glass_amt = round(custom_materials[GET_MATERIAL_REF(/datum/material/glass)]/MINERAL_MATERIAL_AMOUNT) //Replace this shit later - - if(W.tool_behaviour == TOOL_WRENCH && (metal_amt || glass_amt)) - to_chat(user, span_notice("You dismantle [src].")) - if(metal_amt) - new /obj/item/stack/sheet/iron(get_turf(src), metal_amt) - if(glass_amt) - new /obj/item/stack/sheet/glass(get_turf(src), glass_amt) - qdel(src) - - - // APC HULL /obj/item/wallframe/apc name = "\improper APC frame" desc = "Used for repairing or building APCs." icon_state = "apc" result_path = /obj/machinery/power/apc - inverse = 1 - /obj/item/wallframe/apc/try_build(turf/on_wall, user) if(!..()) @@ -108,17 +25,3 @@ to_chat(user, span_notice("You cut the cables and disassemble the unused power terminal.")) qdel(E) return TRUE - - -/obj/item/electronics - desc = "Looks like a circuit. Probably is." - icon = 'icons/obj/module.dmi' - icon_state = "door_electronics" - inhand_icon_state = "electronic" - lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi' - righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi' - flags_1 = CONDUCT_1 - w_class = WEIGHT_CLASS_SMALL - custom_materials = list(/datum/material/iron=50, /datum/material/glass=50) - grind_results = list(/datum/reagent/iron = 10, /datum/reagent/silicon = 10) - custom_price = PAYCHECK_EASY * 0.5 diff --git a/code/game/objects/items/devices/radio/intercom.dm b/code/game/objects/items/devices/radio/intercom.dm index 8949cb0c3e1..93436624a3b 100644 --- a/code/game/objects/items/devices/radio/intercom.dm +++ b/code/game/objects/items/devices/radio/intercom.dm @@ -18,8 +18,6 @@ /obj/item/radio/intercom/Initialize(mapload, ndir, building) . = ..() - if(building) - setDir(ndir) var/area/current_area = get_area(src) if(!current_area) return @@ -142,36 +140,16 @@ desc = "A ready-to-go intercom. Just slap it on a wall and screw it in!" icon_state = "intercom" result_path = /obj/item/radio/intercom/unscrewed - pixel_shift = 29 - inverse = TRUE + pixel_shift = 26 custom_materials = list(/datum/material/iron = 75, /datum/material/glass = 25) +MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom, 26) + /obj/item/radio/intercom/chapel name = "Confessional intercom" anonymize = TRUE frequency = 1481 broadcasting = TRUE -/obj/item/radio/intercom/directional/north - pixel_y = 22 - -/obj/item/radio/intercom/directional/south - pixel_y = -28 - -/obj/item/radio/intercom/directional/east - pixel_x = 28 - -/obj/item/radio/intercom/directional/west - pixel_x = -28 - -/obj/item/radio/intercom/prison/directional/north - pixel_y = 22 - -/obj/item/radio/intercom/prison/directional/south - pixel_y = -28 - -/obj/item/radio/intercom/prison/directional/east - pixel_x = 28 - -/obj/item/radio/intercom/prison/directional/west - pixel_x = -28 +MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/prison, 26) +MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/chapel, 26) diff --git a/code/game/objects/items/storage/secure.dm b/code/game/objects/items/storage/secure.dm index 340a2942f79..852ba4b72ff 100644 --- a/code/game/objects/items/storage/secure.dm +++ b/code/game/objects/items/storage/secure.dm @@ -171,21 +171,7 @@ anchored = TRUE density = FALSE -/obj/item/storage/secure/safe/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/item/storage/secure/safe/directional/south - dir = NORTH - pixel_y = -32 - -/obj/item/storage/secure/safe/directional/east - dir = WEST - pixel_x = 32 - -/obj/item/storage/secure/safe/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/item/storage/secure/safe, 32) /obj/item/storage/secure/safe/ComponentInitialize() . = ..() @@ -225,6 +211,8 @@ There appears to be a small amount of surface corrosion. It doesn't look like it max_integrity = 300 color = "#ffdd33" +MAPPING_DIRECTIONAL_HELPERS(/obj/item/storage/secure/safe/caps_spare, 32) + /obj/item/storage/secure/safe/caps_spare/Initialize(mapload) . = ..() diff --git a/code/game/objects/items/wall_mounted.dm b/code/game/objects/items/wall_mounted.dm new file mode 100644 index 00000000000..1a5610a6726 --- /dev/null +++ b/code/game/objects/items/wall_mounted.dm @@ -0,0 +1,91 @@ +/obj/item/wallframe + icon = 'icons/obj/wallframe.dmi' + custom_materials = list(/datum/material/iron=MINERAL_MATERIAL_AMOUNT*2) + flags_1 = CONDUCT_1 + inhand_icon_state = "syringe_kit" + lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi' + w_class = WEIGHT_CLASS_SMALL + var/result_path + var/wall_external = FALSE // For frames that are external to the wall they are placed on, like light fixtures and cameras. + var/pixel_shift //The amount of pixels + +/obj/item/wallframe/proc/try_build(turf/on_wall, mob/user) + if(get_dist(on_wall,user)>1) + return + var/floor_to_wall = get_dir(user, on_wall) + if(!(floor_to_wall in GLOB.cardinals)) + return + var/turf/T = get_turf(user) + var/area/A = get_area(T) + if(!isfloorturf(T)) + to_chat(user, span_warning("You cannot place [src] on this spot!")) + return + if(A.always_unpowered) + to_chat(user, span_warning("You cannot place [src] in this area!")) + return + if(check_wall_item(T, floor_to_wall, wall_external)) + to_chat(user, span_warning("There's already an item on this wall!")) + return + + return TRUE + +/obj/item/wallframe/proc/attach(turf/on_wall, mob/user) + if(result_path) + playsound(src.loc, 'sound/machines/click.ogg', 75, TRUE) + user.visible_message(span_notice("[user.name] attaches [src] to the wall."), + span_notice("You attach [src] to the wall."), + span_hear("You hear clicking.")) + var/floor_to_wall = get_dir(user, on_wall) + + var/obj/O = new result_path(get_turf(user), floor_to_wall, TRUE) + O.setDir(floor_to_wall) + + if(pixel_shift) + switch(floor_to_wall) + if(NORTH) + O.pixel_y = pixel_shift + if(SOUTH) + O.pixel_y = -pixel_shift + if(EAST) + O.pixel_x = pixel_shift + if(WEST) + O.pixel_x = -pixel_shift + after_attach(O) + + qdel(src) + +/obj/item/wallframe/proc/after_attach(obj/O) + transfer_fingerprints_to(O) + +/obj/item/wallframe/attackby(obj/item/W, mob/user, params) + ..() + if(W.tool_behaviour == TOOL_SCREWDRIVER) + // For camera-building borgs + var/turf/T = get_step(get_turf(user), user.dir) + if(iswallturf(T)) + T.attackby(src, user, params) + + var/metal_amt = round(custom_materials[GET_MATERIAL_REF(/datum/material/iron)]/MINERAL_MATERIAL_AMOUNT) //Replace this shit later + var/glass_amt = round(custom_materials[GET_MATERIAL_REF(/datum/material/glass)]/MINERAL_MATERIAL_AMOUNT) //Replace this shit later + + if(W.tool_behaviour == TOOL_WRENCH && (metal_amt || glass_amt)) + to_chat(user, span_notice("You dismantle [src].")) + if(metal_amt) + new /obj/item/stack/sheet/iron(get_turf(src), metal_amt) + if(glass_amt) + new /obj/item/stack/sheet/glass(get_turf(src), glass_amt) + qdel(src) + +/obj/item/electronics + desc = "Looks like a circuit. Probably is." + icon = 'icons/obj/module.dmi' + icon_state = "door_electronics" + inhand_icon_state = "electronic" + lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi' + righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi' + flags_1 = CONDUCT_1 + w_class = WEIGHT_CLASS_SMALL + custom_materials = list(/datum/material/iron=50, /datum/material/glass=50) + grind_results = list(/datum/reagent/iron = 10, /datum/reagent/silicon = 10) + custom_price = PAYCHECK_EASY * 0.5 diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index ca22a90f40e..827d454bef0 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -274,19 +274,7 @@ buildstackamount = 1 item_chair = /obj/item/chair/stool -/obj/structure/chair/stool/directional/north - dir = SOUTH - pixel_y = 6 - -/obj/structure/chair/stool/directional/south - dir = NORTH - pixel_y = 6 - -/obj/structure/chair/stool/directional/east - dir = WEST - -/obj/structure/chair/stool/directional/west - dir = EAST +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/chair/stool, 0) /obj/structure/chair/stool/narsie_act() return @@ -314,17 +302,7 @@ icon_state = "bar" item_chair = /obj/item/chair/stool/bar -/obj/structure/chair/stool/bar/directional/north - dir = SOUTH - -/obj/structure/chair/stool/bar/directional/south - dir = NORTH - -/obj/structure/chair/stool/bar/directional/east - dir = WEST - -/obj/structure/chair/stool/bar/directional/west - dir = EAST +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/chair/stool/bar, 0) /obj/item/chair name = "chair" diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm index c3fe9d2f89b..59260749e43 100644 --- a/code/game/objects/structures/extinguisher.dm +++ b/code/game/objects/structures/extinguisher.dm @@ -10,28 +10,11 @@ var/obj/item/extinguisher/stored_extinguisher var/opened = FALSE -/obj/structure/extinguisher_cabinet/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/structure/extinguisher_cabinet/directional/south - dir = NORTH - pixel_y = -32 - -/obj/structure/extinguisher_cabinet/directional/east - dir = WEST - pixel_x = 32 - -/obj/structure/extinguisher_cabinet/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/extinguisher_cabinet, 29) /obj/structure/extinguisher_cabinet/Initialize(mapload, ndir, building) . = ..() if(building) - setDir(ndir) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -27 : 27) - pixel_y = (dir & 3)? (dir ==1 ? -30 : 30) : 0 opened = TRUE //icon_state = "extinguisher_empty" ORIGINAL icon_state = "extinguisher_empty_open" //SKYRAT EDIT CHANGE - AESTHETICS @@ -177,20 +160,9 @@ stored_extinguisher = null qdel(src) -/obj/structure/extinguisher_cabinet/directional/north - pixel_y = 32 - -/obj/structure/extinguisher_cabinet/directional/south - pixel_y = -32 - -/obj/structure/extinguisher_cabinet/directional/east - pixel_x = 26 - -/obj/structure/extinguisher_cabinet/directional/west - pixel_x = -26 - /obj/item/wallframe/extinguisher_cabinet name = "extinguisher cabinet frame" desc = "Used for building wall-mounted extinguisher cabinets." icon_state = "extinguisher" result_path = /obj/structure/extinguisher_cabinet + pixel_shift = 29 diff --git a/code/game/objects/structures/fireaxe.dm b/code/game/objects/structures/fireaxe.dm index 9595ab84cd3..2acee858f66 100644 --- a/code/game/objects/structures/fireaxe.dm +++ b/code/game/objects/structures/fireaxe.dm @@ -12,21 +12,7 @@ var/open = FALSE var/obj/item/fireaxe/fireaxe -/obj/structure/fireaxecabinet/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/structure/fireaxecabinet/directional/south - dir = NORTH - pixel_y = -32 - -/obj/structure/fireaxecabinet/directional/east - dir = WEST - pixel_x = 32 - -/obj/structure/fireaxecabinet/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/fireaxecabinet, 32) /obj/structure/fireaxecabinet/Initialize(mapload) . = ..() diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index e2bb32daa4c..f5ba75ac460 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -9,21 +9,7 @@ max_integrity = 200 integrity_failure = 0.5 -/obj/structure/mirror/directional/north - dir = SOUTH - pixel_y = 28 - -/obj/structure/mirror/directional/south - dir = NORTH - pixel_y = -28 - -/obj/structure/mirror/directional/east - dir = WEST - pixel_x = 28 - -/obj/structure/mirror/directional/west - dir = EAST - pixel_x = -28 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/mirror, 28) /obj/structure/mirror/Initialize(mapload) . = ..() diff --git a/code/game/objects/structures/noticeboard.dm b/code/game/objects/structures/noticeboard.dm index f057b36a4cc..b0be9b131c5 100644 --- a/code/game/objects/structures/noticeboard.dm +++ b/code/game/objects/structures/noticeboard.dm @@ -11,21 +11,7 @@ /// Current number of a pinned notices var/notices = 0 -/obj/structure/noticeboard/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/structure/noticeboard/directional/south - dir = NORTH - pixel_y = -32 - -/obj/structure/noticeboard/directional/east - dir = WEST - pixel_x = 32 - -/obj/structure/noticeboard/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/noticeboard, 32) /obj/structure/noticeboard/Initialize(mapload) . = ..() diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index da3771a46b3..02a875ee5f4 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -159,21 +159,7 @@ var/exposed = 0 // can you currently put an item inside var/obj/item/hiddenitem = null // what's in the urinal -/obj/structure/urinal/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/structure/urinal/directional/south - dir = NORTH - pixel_y = -32 - -/obj/structure/urinal/directional/east - dir = WEST - pixel_x = 32 - -/obj/structure/urinal/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/urinal, 32) /obj/structure/urinal/Initialize(mapload) . = ..() diff --git a/code/modules/art/paintings.dm b/code/modules/art/paintings.dm index b1010664fd8..e77e64271c8 100644 --- a/code/modules/art/paintings.dm +++ b/code/modules/art/paintings.dm @@ -242,6 +242,7 @@ flags_1 = NONE icon_state = "frame-empty" result_path = /obj/structure/sign/painting + pixel_shift = 30 /obj/structure/sign/painting name = "Painting" @@ -262,9 +263,6 @@ SSpersistent_paintings.painting_frames += src if(dir) setDir(dir) - if(building) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -30 : 30) - pixel_y = (dir & 3)? (dir ==1 ? -30 : 30) : 0 /obj/structure/sign/painting/Destroy() . = ..() diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm index e9dbe002f55..dbafa85bf0d 100644 --- a/code/modules/atmospherics/machinery/airalarm.dm +++ b/code/modules/atmospherics/machinery/airalarm.dm @@ -49,6 +49,7 @@ icon = 'icons/obj/monitors.dmi' //OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE icon_state = "alarm_bitem" result_path = /obj/machinery/airalarm + pixel_shift = 24 #define AALARM_MODE_SCRUBBING 1 #define AALARM_MODE_VENTING 2 //makes draught @@ -128,8 +129,6 @@ if(nbuild) buildstage = AIRALARM_BUILD_NO_CIRCUIT panel_open = TRUE - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir == 1 ? -24 : 24) : 0 if(name == initial(name)) name = "[get_area_name(src)] Air Alarm" @@ -886,21 +885,7 @@ /obj/machinery/airalarm/away //general away mission access req_access = list(ACCESS_AWAY_GENERAL) -/obj/machinery/airalarm/directional/north //Pixel offsets get overwritten on New() - dir = SOUTH - pixel_y = 24 - -/obj/machinery/airalarm/directional/south - dir = NORTH - pixel_y = -24 - -/obj/machinery/airalarm/directional/east - dir = WEST - pixel_x = 24 - -/obj/machinery/airalarm/directional/west - dir = EAST - pixel_x = -24 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/airalarm, 24) /obj/item/circuit_component/air_alarm display_name = "Air Alarm" diff --git a/code/modules/atmospherics/machinery/bluespace_vendor.dm b/code/modules/atmospherics/machinery/bluespace_vendor.dm index a0346376b24..94ff633a4aa 100644 --- a/code/modules/atmospherics/machinery/bluespace_vendor.dm +++ b/code/modules/atmospherics/machinery/bluespace_vendor.dm @@ -4,6 +4,7 @@ icon = 'icons/obj/atmospherics/components/bluespace_gas_selling.dmi' icon_state = "bluespace_vendor_open" result_path = /obj/machinery/bluespace_vendor/built + pixel_shift = 30 ///Defines for the mode of the vendor #define BS_MODE_OFF 1 @@ -51,31 +52,13 @@ map_spawned = FALSE mode = BS_MODE_OPEN -/obj/machinery/bluespace_vendor/north //Pixel offsets get overwritten on New() - dir = SOUTH - pixel_y = 30 - -/obj/machinery/bluespace_vendor/south - dir = NORTH - pixel_y = -30 - -/obj/machinery/bluespace_vendor/east - dir = WEST - pixel_x = 30 - -/obj/machinery/bluespace_vendor/west - dir = EAST - pixel_x = -30 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/bluespace_vendor, 30) /obj/machinery/bluespace_vendor/New(loc, ndir, nbuild) . = ..() - if(ndir) - setDir(ndir) if(nbuild) panel_open = TRUE - pixel_x = (dir & 3)? 0 : (dir == 4 ? -30 : 30) - pixel_y = (dir & 3)? (dir == 1 ? -30 : 30) : 0 update_appearance() diff --git a/code/modules/mining/aux_base.dm b/code/modules/mining/aux_base.dm index fc83596137d..1d7ef43a424 100644 --- a/code/modules/mining/aux_base.dm +++ b/code/modules/mining/aux_base.dm @@ -34,21 +34,7 @@ density = FALSE //this is a wallmount -/obj/machinery/computer/auxiliary_base/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/computer/auxiliary_base/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/computer/auxiliary_base/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/computer/auxiliary_base/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/auxiliary_base, 32) /obj/machinery/computer/auxiliary_base/Initialize(mapload) . = ..() diff --git a/code/modules/paperwork/ticketmachine.dm b/code/modules/paperwork/ticketmachine.dm index 3ac27df28c0..746f836dff9 100644 --- a/code/modules/paperwork/ticketmachine.dm +++ b/code/modules/paperwork/ticketmachine.dm @@ -22,21 +22,7 @@ var/list/ticket_holders = list() var/list/obj/item/ticket_machine_ticket/tickets = list() -/obj/machinery/ticket_machine/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/ticket_machine/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/ticket_machine/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/ticket_machine/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/ticket_machine, 32) /obj/machinery/ticket_machine/multitool_act(mob/living/user, obj/item/I) if(!multitool_check_buffer(user, I)) //make sure it has a data buffer diff --git a/code/modules/photography/photos/frame.dm b/code/modules/photography/photos/frame.dm index ac1ad6ddf7a..8e5bc00a21b 100644 --- a/code/modules/photography/photos/frame.dm +++ b/code/modules/photography/photos/frame.dm @@ -9,6 +9,7 @@ icon_state = "frame-overlay" result_path = /obj/structure/sign/picture_frame var/obj/item/photo/displayed + pixel_shift = 30 /obj/item/wallframe/picture/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/photo)) @@ -83,9 +84,6 @@ LAZYADD(SSpersistence.photo_frames, src) if(dir) setDir(dir) - if(building) - pixel_x = (dir & 3)? 0 : (dir == 4 ? -30 : 30) - pixel_y = (dir & 3)? (dir ==1 ? -30 : 30) : 0 /obj/structure/sign/picture_frame/Destroy() LAZYREMOVE(SSpersistence.photo_frames, src) diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 88bfaaeb103..5fa7bda2500 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -14,6 +14,10 @@ /// The APCs cover is missing. #define APC_COVER_REMOVED 2 +// APC visuals +/// Pixel offset of the APC from the floor turf +#define APC_PIXEL_OFFSET 25 + // APC charging status: /// The APC is not charging. #define APC_NOT_CHARGING 0 @@ -145,7 +149,6 @@ var/locked = TRUE var/coverlocked = TRUE var/aidisabled = FALSE - var/tdir = null var/obj/machinery/power/terminal/terminal = null var/lastused_light = 0 var/lastused_equip = 0 @@ -198,21 +201,7 @@ /obj/machinery/power/apc/auto_name auto_name = TRUE -/obj/machinery/power/apc/auto_name/north //Pixel offsets get overwritten on New() - dir = NORTH - pixel_y = 23 - -/obj/machinery/power/apc/auto_name/south - dir = SOUTH - pixel_y = -23 - -/obj/machinery/power/apc/auto_name/east - dir = EAST - pixel_x = 24 - -/obj/machinery/power/apc/auto_name/west - dir = WEST - pixel_x = -25 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/power/apc/auto_name, APC_PIXEL_OFFSET) /obj/machinery/power/apc/get_cell() return cell @@ -232,30 +221,7 @@ GLOB.apcs_list += src wires = new /datum/wires/apc(src) - // offset 24 pixels in direction of dir - // this allows the APC to be embedded in a wall, yet still inside an area - if (building) - setDir(ndir) - tdir = dir // to fix Vars bug - setDir(SOUTH) - switch(tdir) - if(NORTH) - if((pixel_y != initial(pixel_y)) && (pixel_y != 23)) - log_mapping("APC: ([src]) at [AREACOORD(src)] with dir ([tdir] | [uppertext(dir2text(tdir))]) has pixel_y value ([pixel_y] - should be 23.)") - pixel_y = 23 - if(SOUTH) - if((pixel_y != initial(pixel_y)) && (pixel_y != -23)) - log_mapping("APC: ([src]) at [AREACOORD(src)] with dir ([tdir] | [uppertext(dir2text(tdir))]) has pixel_y value ([pixel_y] - should be -23.)") - pixel_y = -23 - if(EAST) - if((pixel_y != initial(pixel_x)) && (pixel_x != 24)) - log_mapping("APC: ([src]) at [AREACOORD(src)] with dir ([tdir] | [uppertext(dir2text(tdir))]) has pixel_x value ([pixel_x] - should be 24.)") - pixel_x = 24 - if(WEST) - if((pixel_y != initial(pixel_x)) && (pixel_x != -25)) - log_mapping("APC: ([src]) at [AREACOORD(src)] with dir ([tdir] | [uppertext(dir2text(tdir))]) has pixel_x value ([pixel_x] - should be -25.)") - pixel_x = -25 if (building) area = get_area(src) opened = APC_COVER_OPENED @@ -264,6 +230,26 @@ set_machine_stat(machine_stat | MAINT) update_appearance() addtimer(CALLBACK(src, .proc/update), 5) + dir = ndir + + // offset APC_PIXEL_OFFSET pixels in direction of dir + // this allows the APC to be embedded in a wall, yet still inside an area + var/offset_old + switch(dir) + if(NORTH) + offset_old = pixel_y + pixel_y = APC_PIXEL_OFFSET + if(SOUTH) + offset_old = pixel_y + pixel_y = -APC_PIXEL_OFFSET + if(EAST) + offset_old = pixel_x + pixel_x = APC_PIXEL_OFFSET + if(WEST) + offset_old = pixel_x + pixel_x = -APC_PIXEL_OFFSET + if(offset_old != APC_PIXEL_OFFSET && !building) + log_mapping("APC: ([src]) at [AREACOORD(src)] with dir ([dir] | [uppertext(dir2text(dir))]) has pixel_[dir & (WEST|EAST) ? "x" : "y"] value [offset_old] - should be [dir & (SOUTH|EAST) ? "-" : ""][APC_PIXEL_OFFSET]. Use the directional/ helpers!") /obj/machinery/power/apc/Destroy() GLOB.apcs_list -= src @@ -297,7 +283,7 @@ // create a terminal object at the same position as original turf loc // wires will attach to this terminal = new/obj/machinery/power/terminal(loc) - terminal.setDir(tdir) + terminal.setDir(dir) terminal.master = src /obj/machinery/power/apc/Initialize(mapload) @@ -1599,6 +1585,8 @@ #undef AUTOSET_OFF #undef AUTOSET_ON +#undef APC_PIXEL_OFFSET + #undef APC_NO_POWER #undef APC_LOW_POWER #undef APC_HAS_POWER diff --git a/code/modules/power/lighting/light_mapping_helpers.dm b/code/modules/power/lighting/light_mapping_helpers.dm index b9afe85e53e..8d6c334cd77 100644 --- a/code/modules/power/lighting/light_mapping_helpers.dm +++ b/code/modules/power/lighting/light_mapping_helpers.dm @@ -85,236 +85,56 @@ // -------- Directional presets // The directions are backwards on the lights we have now -/obj/machinery/light/directional/north - dir = NORTH - -/obj/machinery/light/directional/south - dir = SOUTH - -/obj/machinery/light/directional/east - dir = EAST - -/obj/machinery/light/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light, 0) // ---- Broken tube -/obj/machinery/light/broken/directional/north - dir = NORTH - -/obj/machinery/light/broken/directional/south - dir = SOUTH - -/obj/machinery/light/broken/directional/east - dir = EAST - -/obj/machinery/light/broken/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/broken, 0) // ---- Tube construct -/obj/structure/light_construct/directional/north - dir = NORTH - -/obj/structure/light_construct/directional/south - dir = SOUTH - -/obj/structure/light_construct/directional/east - dir = EAST - -/obj/structure/light_construct/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/light_construct, 0) // ---- Tube frames -/obj/machinery/light/built/directional/north - dir = NORTH - -/obj/machinery/light/built/directional/south - dir = SOUTH - -/obj/machinery/light/built/directional/east - dir = EAST - -/obj/machinery/light/built/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/built, 0) // ---- No nightlight tubes -/obj/machinery/light/no_nightlight/directional/north - dir = NORTH - -/obj/machinery/light/no_nightlight/directional/south - dir = SOUTH - -/obj/machinery/light/no_nightlight/directional/east - dir = EAST - -/obj/machinery/light/no_nightlight/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/no_nightlight, 0) // ---- Warm light tubes -/obj/machinery/light/warm/directional/north - dir = NORTH - -/obj/machinery/light/warm/directional/south - dir = SOUTH - -/obj/machinery/light/warm/directional/east - dir = EAST - -/obj/machinery/light/warm/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/warm, 0) // ---- No nightlight warm light tubes -/obj/machinery/light/warm/no_nightlight/directional/north - dir = NORTH - -/obj/machinery/light/warm/no_nightlight/directional/south - dir = SOUTH - -/obj/machinery/light/warm/no_nightlight/directional/east - dir = EAST - -/obj/machinery/light/warm/no_nightlight/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/warm/no_nightlight, 0) // ---- Cold light tubes -/obj/machinery/light/cold/directional/north - dir = NORTH - -/obj/machinery/light/cold/directional/south - dir = SOUTH - -/obj/machinery/light/cold/directional/east - dir = EAST - -/obj/machinery/light/cold/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/cold, 0) // ---- No nightlight cold light tubes -/obj/machinery/light/cold/no_nightlight/directional/north - dir = NORTH - -/obj/machinery/light/cold/no_nightlight/directional/south - dir = SOUTH - -/obj/machinery/light/cold/no_nightlight/directional/east - dir = EAST - -/obj/machinery/light/cold/no_nightlight/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/cold/no_nightlight, 0) // ---- Red tubes -/obj/machinery/light/red/directional/north - dir = NORTH - -/obj/machinery/light/red/directional/south - dir = SOUTH - -/obj/machinery/light/red/directional/east - dir = EAST - -/obj/machinery/light/red/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/red, 0) // ---- Blacklight tubes -/obj/machinery/light/blacklight/directional/north - dir = NORTH - -/obj/machinery/light/blacklight/directional/south - dir = SOUTH - -/obj/machinery/light/blacklight/directional/east - dir = EAST - -/obj/machinery/light/blacklight/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/blacklight, 0) // ---- Dim tubes -/obj/machinery/light/dim/directional/north - dir = NORTH - -/obj/machinery/light/dim/directional/south - dir = SOUTH - -/obj/machinery/light/dim/directional/east - dir = EAST - -/obj/machinery/light/dim/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/dim, 0) // -------- Bulb lights -/obj/machinery/light/small/directional/north - dir = NORTH - -/obj/machinery/light/small/directional/south - dir = SOUTH - -/obj/machinery/light/small/directional/east - dir = EAST - -/obj/machinery/light/small/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small, 0) // ---- Bulb construct -/obj/structure/light_construct/small/directional/north - dir = NORTH - -/obj/structure/light_construct/small/directional/south - dir = SOUTH - -/obj/structure/light_construct/small/directional/east - dir = EAST - -/obj/structure/light_construct/small/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/light_construct/small, 0) // ---- Bulb frames -/obj/machinery/light/small/built/directional/north - dir = NORTH - -/obj/machinery/light/small/built/directional/south - dir = SOUTH - -/obj/machinery/light/small/built/directional/east - dir = EAST - -/obj/machinery/light/small/built/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/built, 0) // ---- Broken bulbs -/obj/machinery/light/small/broken/directional/north - dir = NORTH - -/obj/machinery/light/small/broken/directional/south - dir = SOUTH - -/obj/machinery/light/small/broken/directional/east - dir = EAST - -/obj/machinery/light/small/broken/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/broken, 0) // ---- Red bulbs -/obj/machinery/light/small/red/directional/north - dir = NORTH - -/obj/machinery/light/small/red/directional/south - dir = SOUTH - -/obj/machinery/light/small/red/directional/east - dir = EAST - -/obj/machinery/light/small/red/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/red, 0) // ---- Blacklight bulbs -/obj/machinery/light/small/blacklight/directional/north - dir = NORTH - -/obj/machinery/light/small/blacklight/directional/south - dir = SOUTH - -/obj/machinery/light/small/blacklight/directional/east - dir = EAST - -/obj/machinery/light/small/blacklight/directional/west - dir = WEST +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/blacklight, 0) diff --git a/code/modules/power/lighting/light_wallframes.dm b/code/modules/power/lighting/light_wallframes.dm index 653de771652..0688f597f1a 100644 --- a/code/modules/power/lighting/light_wallframes.dm +++ b/code/modules/power/lighting/light_wallframes.dm @@ -4,7 +4,7 @@ icon = 'icons/obj/lighting.dmi' icon_state = "tube-construct-item" result_path = /obj/structure/light_construct - inverse = TRUE + wall_external = TRUE /obj/item/wallframe/light_fixture/small name = "small light fixture frame" diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm index e2e09da0c6c..fffebc63b0e 100644 --- a/code/modules/reagents/reagent_dispenser.dm +++ b/code/modules/reagents/reagent_dispenser.dm @@ -161,21 +161,7 @@ density = FALSE reagent_id = /datum/reagent/consumable/condensedcapsaicin -/obj/structure/reagent_dispensers/peppertank/directional/north - dir = SOUTH - pixel_y = 30 - -/obj/structure/reagent_dispensers/peppertank/directional/south - dir = NORTH - pixel_y = -30 - -/obj/structure/reagent_dispensers/peppertank/directional/east - dir = WEST - pixel_x = 30 - -/obj/structure/reagent_dispensers/peppertank/directional/west - dir = EAST - pixel_x = -30 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/reagent_dispensers/peppertank, 30) /obj/structure/reagent_dispensers/peppertank/Initialize(mapload) . = ..() @@ -232,21 +218,7 @@ density = FALSE reagent_id = /datum/reagent/consumable/virus_food -/obj/structure/reagent_dispensers/virusfood/directional/north - dir = SOUTH - pixel_y = 30 - -/obj/structure/reagent_dispensers/virusfood/directional/south - dir = NORTH - pixel_y = -30 - -/obj/structure/reagent_dispensers/virusfood/directional/east - dir = WEST - pixel_x = 30 - -/obj/structure/reagent_dispensers/virusfood/directional/west - dir = EAST - pixel_x = -30 +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/reagent_dispensers/virusfood, 30) /obj/structure/reagent_dispensers/cooking_oil name = "vat of cooking oil" diff --git a/code/modules/security_levels/keycard_authentication.dm b/code/modules/security_levels/keycard_authentication.dm index 1b4a215b194..bb609b4b69f 100644 --- a/code/modules/security_levels/keycard_authentication.dm +++ b/code/modules/security_levels/keycard_authentication.dm @@ -22,21 +22,7 @@ GLOBAL_DATUM_INIT(keycard_events, /datum/events, new) var/mob/triggerer = null var/waiting = FALSE -/obj/machinery/keycard_auth/directional/north - dir = SOUTH - pixel_y = 26 - -/obj/machinery/keycard_auth/directional/south - dir = NORTH - pixel_y = -26 - -/obj/machinery/keycard_auth/directional/east - dir = WEST - pixel_x = 26 - -/obj/machinery/keycard_auth/directional/west - dir = EAST - pixel_x = -26 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/keycard_auth, 26) /obj/machinery/keycard_auth/Initialize(mapload) . = ..() diff --git a/code/modules/vending/medical_wall.dm b/code/modules/vending/medical_wall.dm index 8658c060ba6..77f66cce706 100644 --- a/code/modules/vending/medical_wall.dm +++ b/code/modules/vending/medical_wall.dm @@ -28,21 +28,7 @@ tiltable = FALSE light_mask = "wallmed-light-mask" -/obj/machinery/vending/wallmed/directional/north - dir = SOUTH - pixel_y = 32 - -/obj/machinery/vending/wallmed/directional/south - dir = NORTH - pixel_y = -32 - -/obj/machinery/vending/wallmed/directional/east - dir = WEST - pixel_x = 32 - -/obj/machinery/vending/wallmed/directional/west - dir = EAST - pixel_x = -32 +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/vending/wallmed, 32) /obj/item/vending_refill/wallmed machine_name = "NanoMed" diff --git a/icons/obj/atmospherics/components/bluespace_gas_selling.dmi b/icons/obj/atmospherics/components/bluespace_gas_selling.dmi index 265b2390451f35625f1c2f997390d6157350a31b..c397dd2dc84131e403d7367a26353f575e4119ab 100644 GIT binary patch literal 12655 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%0AW%RYH5UyZ-Scp+F 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 B)r0^5 diff --git a/icons/obj/machines/camera.dmi b/icons/obj/machines/camera.dmi index efce49432af6fa66603f99c90d9a83c0b648a063..0b0ba30483ca1589f7ab02f7b0c82f4ed1055bc8 100644 GIT binary patch delta 7997 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 diff --git a/icons/obj/monitors.dmi b/icons/obj/monitors.dmi index d32dafee640c31b1452df5c04369c061bc68574e..38693bc0a0c97a4dff413dbc4f8971851cf252d5 100644 GIT binary patch literal 17878 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 literal 17747 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 Z8pmPyoK33)_-84gC#pIs)k-fS{tJ@|vfTgx diff --git a/icons/obj/terminals.dmi b/icons/obj/terminals.dmi index e538a76444133f285286e70c1f08986136fec1ac..4b9bb719531440ee90f3a488da78848c3f96f401 100644 GIT binary patch delta 17645 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 delta 17651 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