From 2b57e893ade1d88558ba7f5b11fca88659063b79 Mon Sep 17 00:00:00 2001 From: Ben <91219575+Ben10083@users.noreply.github.com> Date: Sun, 28 Apr 2024 06:54:05 -0400 Subject: [PATCH] ZTA -> ZAT Spellcheck (#19043) For the longest time the Leviathan ZAT has been incorrectly labeled as ZTA. This sweeps through all instances and renames it back to ZAT. ![image](https://github.com/Aurorastation/Aurora.3/assets/91219575/416a0288-6fa4-42c6-9b2d-c2c3137ed2a7) --------- Co-authored-by: Ben10083 --- code/__DEFINES/ship_weapons.dm | 4 +- .../ship_weaponry/weaponry/leviathan.dm | 26 +- code/modules/paperwork/folders.dm | 4 +- html/changelogs/Ben10083 ZAT.yml | 58 ++++ icons/turf/areas.dmi | Bin 36566 -> 36563 bytes .../ships/dpra/hailstorm/hailstorm_areas.dm | 2 +- maps/sccv_horizon/code/sccv_horizon_areas.dm | 8 +- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 256 +++++++++--------- 8 files changed, 208 insertions(+), 150 deletions(-) create mode 100644 html/changelogs/Ben10083 ZAT.yml diff --git a/code/__DEFINES/ship_weapons.dm b/code/__DEFINES/ship_weapons.dm index 29bec771f1e..7ce3ee7076b 100644 --- a/code/__DEFINES/ship_weapons.dm +++ b/code/__DEFINES/ship_weapons.dm @@ -2,7 +2,7 @@ #define SHIP_CALIBER_406MM "406mm" #define SHIP_CALIBER_40MM "40mm" #define SHIP_CALIBER_90MM "90mm" -#define SHIP_CALIBER_ZTA "zero-point warp beam" +#define SHIP_CALIBER_ZAT "zero-point warp beam" #define SHIP_CALIBER_178MM "178mm" #define SHIP_CALIBER_COILGUN "tungsten rod" #define SHIP_CALIBER_200MM "200mm" @@ -25,7 +25,7 @@ #define SHIP_AMMO_IMPACT_LASER "laser" #define SHIP_AMMO_IMPACT_BUNKERBUSTER "bunker-buster" #define SHIP_AMMO_IMPACT_PLASMA "plasma" -#define SHIP_AMMO_IMPACT_ZTA "zero-point warp beam" +#define SHIP_AMMO_IMPACT_ZAT "zero-point warp beam" #define SHIP_AMMO_IMPACT_BLASTER "blaster charge" #define FIRING_EFFECT_FLAG_THROW_MOBS 1 diff --git a/code/modules/overmap/ship_weaponry/weaponry/leviathan.dm b/code/modules/overmap/ship_weaponry/weaponry/leviathan.dm index 0d17f6eee38..83ef1a72977 100644 --- a/code/modules/overmap/ship_weaponry/weaponry/leviathan.dm +++ b/code/modules/overmap/ship_weaponry/weaponry/leviathan.dm @@ -9,7 +9,7 @@ projectile_type = /obj/item/projectile/ship_ammo/leviathan use_ammunition = FALSE heavy_firing_sound = 'sound/weapons/gunshot/ship_weapons/leviathan_fire.ogg' - caliber = SHIP_CALIBER_ZTA + caliber = SHIP_CALIBER_ZAT firing_effects = FIRING_EFFECT_FLAG_THROW_MOBS|FIRING_EFFECT_FLAG_EXTREMELY_LOUD screenshake_type = SHIP_GUN_SCREENSHAKE_ALL_MOBS layer = ABOVE_HUMAN_LAYER @@ -125,8 +125,8 @@ name = "zero-point artillery beam" desc = "A beam of pure energy." range = OVERMAP_PROJECTILE_RANGE_ULTRAHIGH - caliber = SHIP_CALIBER_ZTA - impact_type = SHIP_AMMO_IMPACT_ZTA + caliber = SHIP_CALIBER_ZAT + impact_type = SHIP_AMMO_IMPACT_ZAT overmap_icon_state = "heavy_pulse" /obj/item/ship_ammunition/leviathan/Initialize() @@ -166,29 +166,29 @@ on_hit(A) return TRUE -/obj/machinery/zta_lever +/obj/machinery/zat_lever name = "activation lever" desc = "An old-style lever that couples the Leviathan's capacitors. Flicking this will result in extreme power usage!" icon = 'icons/obj/power.dmi' icon_state = "lever1" - var/obj/machinery/ship_weapon/leviathan/ZTA + var/obj/machinery/ship_weapon/leviathan/ZAT var/toggled = FALSE var/cooldown = 0 -/obj/machinery/zta_lever/Initialize(mapload, d, populate_components, is_internal) +/obj/machinery/zat_lever/Initialize(mapload, d, populate_components, is_internal) ..() return INITIALIZE_HINT_LATELOAD -/obj/machinery/zta_lever/LateInitialize() +/obj/machinery/zat_lever/LateInitialize() for(var/obj/machinery/ship_weapon/leviathan/cannon in get_area(src)) - ZTA = cannon + ZAT = cannon break -/obj/machinery/zta_lever/Destroy() - ZTA = null +/obj/machinery/zat_lever/Destroy() + ZAT = null return..() -/obj/machinery/zta_lever/attack_hand(mob/user) +/obj/machinery/zat_lever/attack_hand(mob/user) if(!use_check_and_message(user, USE_DISALLOW_SILICONS) && !stat && (cooldown + 10 SECONDS < world.time)) if(do_after(user, 1 SECOND)) visible_message(SPAN_DANGER("[user] pulls \the [src] [toggled ? "up" : "down"]!")) @@ -196,12 +196,12 @@ switch(toggled) if(FALSE) flick("lever3", src) - ZTA.disable() + ZAT.disable() sleep(2) icon_state = "lever1" if(TRUE) flick("lever2", src) - ZTA.enable() + ZAT.enable() sleep(2) icon_state = "lever_down" playsound(src, 'sound/effects/spring.ogg', 100) diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 0fac3cd53f8..427cade5c03 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -191,11 +191,11 @@ else ..() -/obj/item/folder/envelope/zta +/obj/item/folder/envelope/zat name = "leviathan zero-point artillery instructions" desc = "A small envelope with \"SCC CONFIDENTIAL\" written in bold text on the front." -/obj/item/folder/envelope/zta/Initialize() +/obj/item/folder/envelope/zat/Initialize() . = ..() var/obj/item/paper/R = new(src) R.set_content("leviathan zero-point artillery instructions", "

Stellar Corporate Conglomerate
\ diff --git a/html/changelogs/Ben10083 ZAT.yml b/html/changelogs/Ben10083 ZAT.yml new file mode 100644 index 00000000000..375a0789eb3 --- /dev/null +++ b/html/changelogs/Ben10083 ZAT.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Ben10083 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - spellcheck: "The Conglomerate has discovered that the ZAT was incorrectly labeled as ZTA in various documents and markings. The issue has been resolved and those responsible have been let go." diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index 1bec5b861b0551ad0809433c5c208cbabded02ea..b2d38f312ac02e7bd4d49cb0544fdb2505696757 100755 GIT binary patch delta 5159 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 LP_s(?QON%RS8>Dj diff --git a/maps/away/ships/dpra/hailstorm/hailstorm_areas.dm b/maps/away/ships/dpra/hailstorm/hailstorm_areas.dm index 592c060460a..738cbadb6b2 100644 --- a/maps/away/ships/dpra/hailstorm/hailstorm_areas.dm +++ b/maps/away/ships/dpra/hailstorm/hailstorm_areas.dm @@ -21,7 +21,7 @@ /area/hailstorm_ship/gun_deck/second name = "Hailstorm Ship Secondary Gun Deck" - icon_state = "zta" + icon_state = "zat" /area/hailstorm_ship/eva name = "Hailstorm Ship EVA Storage" diff --git a/maps/sccv_horizon/code/sccv_horizon_areas.dm b/maps/sccv_horizon/code/sccv_horizon_areas.dm index 478ca3f5ba8..7889ee3b2e4 100644 --- a/maps/sccv_horizon/code/sccv_horizon_areas.dm +++ b/maps/sccv_horizon/code/sccv_horizon_areas.dm @@ -848,10 +848,10 @@ ambience = AMBIENCE_FOREBODING holomap_color = HOLOMAP_AREACOLOR_OPERATIONS -// ZTA -/area/horizon/zta - name = "Horizon - ZTA Weapon System" - icon_state = "zta" +// ZAT +/area/horizon/zat + name = "Horizon - ZAT Weapon System" + icon_state = "zat" sound_environment = SOUND_AREA_LARGE_ENCLOSED ambience = AMBIENCE_SINGULARITY area_blurb = "A gargantuan machine dominates the room, covered in components and moving parts. Its name is befitting of its size." diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index e07c352fdf3..c02071ff8af 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -534,7 +534,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "aob" = ( /obj/structure/railing/mapped{ dir = 4 @@ -844,7 +844,7 @@ RCon_tag = "Leviathan" }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "atu" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -1258,7 +1258,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "azB" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -1777,7 +1777,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "aNp" = ( /obj/effect/floor_decal/corner/dark_green/full, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1871,7 +1871,7 @@ /area/engineering/engine_room) "aPN" = ( /turf/simulated/wall/r_wall, -/area/horizon/zta) +/area/horizon/zat) "aQb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -3352,7 +3352,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "bvf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3793,7 +3793,7 @@ /area/rnd/hallway) "bDO" = ( /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "bDV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -3817,7 +3817,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "bFA" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/item/device/radio/intercom/south, @@ -4047,7 +4047,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "bKu" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged, /obj/structure/cable{ @@ -4465,7 +4465,7 @@ dir = 4 }, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "bTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -4523,7 +4523,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "bUd" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -5020,7 +5020,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "cgI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -6578,7 +6578,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "cXU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7076,7 +7076,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "dkR" = ( /obj/structure/railing/mapped{ dir = 8 @@ -7617,7 +7617,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "dyU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -7831,7 +7831,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "dDS" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -8134,7 +8134,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "dLO" = ( /obj/machinery/door/window/westright, /obj/structure/platform_stairs/full/east_west_cap, @@ -8388,7 +8388,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "dSH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, @@ -8427,7 +8427,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "dVc" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -8658,7 +8658,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "dYr" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, @@ -8708,7 +8708,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "dZL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8764,7 +8764,7 @@ /obj/item/device/flashlight/lamp, /obj/machinery/firealarm/north, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "ebq" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -9407,7 +9407,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "erY" = ( /obj/random/junk, /turf/simulated/floor/tiled/dark/full, @@ -9552,7 +9552,7 @@ "ewx" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "ewD" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/spline/plain{ @@ -10337,7 +10337,7 @@ name = "Primary Armament Shielding" }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "eQx" = ( /obj/structure/railing/mapped{ dir = 4 @@ -10487,7 +10487,7 @@ "eUs" = ( /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "eUB" = ( /obj/machinery/flasher{ id = "permflash" @@ -11257,15 +11257,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "fhw" = ( /obj/machinery/camera/motion{ - c_tag = "ZTA Aft Port"; + c_tag = "ZAT Aft Port"; dir = 8; network = list("Command","Security") }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "fhD" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -11434,7 +11434,7 @@ /area/engineering/engine_room) "fmk" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zta) +/area/horizon/zat) "fmz" = ( /obj/structure/railing/mapped{ dir = 8 @@ -11541,7 +11541,7 @@ pixel_x = 32 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "fpb" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ @@ -12024,7 +12024,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/item/ladder_mobile, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "fAK" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -12805,7 +12805,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "fSm" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/industrial/warning/corner{ @@ -13080,7 +13080,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "fZB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13869,7 +13869,7 @@ dir = 8 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "goQ" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 8 @@ -14238,7 +14238,7 @@ /obj/machinery/door/window/eastright, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "gwe" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -14827,7 +14827,7 @@ "gHk" = ( /obj/effect/floor_decal/corner/pink/diagonal, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "gHn" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -15919,7 +15919,7 @@ layer = 3.3 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "hkA" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -16171,7 +16171,7 @@ /obj/machinery/door/window/eastright, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "hpX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, @@ -16274,7 +16274,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "hrP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -16488,7 +16488,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "hym" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17283,12 +17283,12 @@ /obj/effect/floor_decal/corner/pink/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/motion{ - c_tag = "ZTA Fore Starboard"; + c_tag = "ZAT Fore Starboard"; dir = 4; network = list("Command","Security") }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "hRY" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17431,7 +17431,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "hUW" = ( /obj/machinery/door/airlock/glass_service{ dir = 4; @@ -18447,7 +18447,7 @@ /obj/machinery/porta_turret/sniper, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "itW" = ( /obj/structure/railing/mapped{ dir = 8 @@ -18771,7 +18771,7 @@ dir = 1 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "iCx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19775,7 +19775,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "iZg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -19886,7 +19886,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "jcc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20065,11 +20065,11 @@ dir = 4 }, /obj/machinery/camera/motion{ - c_tag = "ZTA Access Fore"; + c_tag = "ZAT Access Fore"; network = list("Command","Security") }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "jgm" = ( /obj/machinery/door/window/eastright, /obj/structure/platform_stairs/full/east_west_cap, @@ -20674,7 +20674,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "jsS" = ( /obj/machinery/recharger{ pixel_y = 1 @@ -21247,7 +21247,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "jFS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -21749,7 +21749,7 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "jTA" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/engine_monitoring/rust) @@ -22095,7 +22095,7 @@ dir = 8 }, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "kbF" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 1 @@ -22442,7 +22442,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "kkW" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/floor_decal/industrial/outline/security, @@ -22589,7 +22589,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "kpR" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, @@ -22881,7 +22881,7 @@ /obj/effect/floor_decal/corner/pink/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "kwS" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -23813,7 +23813,7 @@ /obj/item/clothing/ears/earmuffs, /obj/item/clothing/ears/earmuffs, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "kVO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -24525,7 +24525,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "lnr" = ( /obj/structure/coatrack{ pixel_x = -10; @@ -24608,7 +24608,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "lqa" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 @@ -25249,7 +25249,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "lIc" = ( /obj/structure/lattice, /obj/structure/platform/ledge{ @@ -26149,7 +26149,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "mcC" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/platform{ @@ -27223,7 +27223,7 @@ name = "port, leviathan" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zta) +/area/horizon/zat) "mCV" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -27255,7 +27255,7 @@ "mDh" = ( /obj/machinery/computer/ship/navigation, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "mDD" = ( /obj/machinery/door/airlock/glass{ dir = 1; @@ -27624,7 +27624,7 @@ /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/pink/diagonal, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "mLL" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ @@ -27696,7 +27696,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "mMi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28684,12 +28684,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/camera/motion{ - c_tag = "ZTA Access Aft"; + c_tag = "ZAT Access Aft"; dir = 4; network = list("Command","Security") }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "nge" = ( /turf/simulated/wall/r_wall, /area/engineering/lobby) @@ -29045,7 +29045,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "nnr" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -29903,7 +29903,7 @@ }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "nLC" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/dark_blue/diagonal, @@ -29967,7 +29967,7 @@ /obj/item/storage/toolbox/mechanical, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "nMY" = ( /obj/machinery/light{ dir = 8 @@ -30009,11 +30009,11 @@ /obj/structure/bed/stool/chair/office/bridge/generic{ dir = 8 }, -/obj/machinery/zta_lever{ +/obj/machinery/zat_lever{ pixel_x = 28 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "nOu" = ( /obj/effect/floor_decal/corner_wide/lime{ dir = 4 @@ -30320,7 +30320,7 @@ name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zta) +/area/horizon/zat) "nZf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -30624,14 +30624,14 @@ /area/maintenance/wing/starboard) "ofb" = ( /obj/structure/table/standard, -/obj/item/folder/envelope/zta, +/obj/item/folder/envelope/zat, /obj/machinery/camera/motion{ - c_tag = "ZTA Fore Port"; + c_tag = "ZAT Fore Port"; dir = 8; network = list("Command","Security") }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "off" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp{ @@ -30813,7 +30813,7 @@ RCon_tag = "Leviathan Substation" }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "oiL" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4-f" @@ -30901,7 +30901,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "okq" = ( /obj/machinery/door/blast/shutters{ density = 0; @@ -31319,7 +31319,7 @@ /obj/effect/floor_decal/industrial/warning, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "ovz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -31431,7 +31431,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "oyf" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/structure/noticeboard{ @@ -31464,7 +31464,7 @@ /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/power/apc/critical/east, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "ozs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -32450,7 +32450,7 @@ /area/engineering/lobby) "oXF" = ( /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "oXY" = ( /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) @@ -32687,7 +32687,7 @@ name = "viewing blast doors" }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "pcG" = ( /obj/structure/cable/green, /obj/machinery/power/apc/low/south, @@ -33299,7 +33299,7 @@ /obj/machinery/door/firedoor, /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "ptJ" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -34767,7 +34767,7 @@ pixel_x = 32 }, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "qgz" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/sign/radiation{ @@ -34958,7 +34958,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/item/clothing/gloves/yellow, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "qlm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -35302,7 +35302,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "qtB" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/corner/grey/diagonal, @@ -35652,7 +35652,7 @@ }, /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "qzF" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -35867,7 +35867,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "qEL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, @@ -36237,7 +36237,7 @@ name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" }, /turf/simulated/wall/r_wall, -/area/horizon/zta) +/area/horizon/zat) "qNd" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/effect/floor_decal/industrial/loading/yellow{ @@ -36326,7 +36326,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "qPP" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -36504,7 +36504,7 @@ /area/horizon/security/brig) "qSN" = ( /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "qSO" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -36941,7 +36941,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "rcH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -36997,7 +36997,7 @@ "rdZ" = ( /obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "rec" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/corner/dark_blue{ @@ -37043,7 +37043,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "rfb" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/tiled/dark, @@ -37952,7 +37952,7 @@ dir = 4 }, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "rCH" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/machinery/newscaster/north, @@ -38135,7 +38135,7 @@ }, /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "rIK" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -38167,7 +38167,7 @@ dir = 8 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "rIP" = ( /obj/machinery/firealarm/south, /obj/structure/disposalpipe/segment{ @@ -38255,7 +38255,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "rLm" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -39286,7 +39286,7 @@ /obj/machinery/alarm/north, /obj/item/device/multitool, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "sjO" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -40693,12 +40693,12 @@ }, /obj/item/hoist_kit, /obj/machinery/camera/motion{ - c_tag = "ZTA Aft Starboard"; + c_tag = "ZAT Aft Starboard"; dir = 4; network = list("Command","Security") }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "sYU" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/cable/orange{ @@ -40979,7 +40979,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "tfl" = ( /obj/structure/table/stone/marble, /obj/machinery/door/firedoor, @@ -42095,7 +42095,7 @@ pixel_x = 32 }, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "tFL" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 5 @@ -42257,7 +42257,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "tIa" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -42635,7 +42635,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "tQQ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -42956,7 +42956,7 @@ "uaC" = ( /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "uaM" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -42973,7 +42973,7 @@ /obj/machinery/light, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "ubq" = ( /turf/simulated/wall/r_wall, /area/horizon/security/hallway) @@ -43976,7 +43976,7 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "usP" = ( /obj/machinery/door/airlock{ dir = 4; @@ -44228,7 +44228,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "uzy" = ( /obj/machinery/firealarm/south, /obj/effect/floor_decal/corner_wide/yellow{ @@ -44322,14 +44322,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "uCX" = ( /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) "uDr" = ( /obj/structure/closet/toolcloset, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "uDs" = ( /obj/effect/landmark/start{ name = "Cyborg" @@ -44828,7 +44828,7 @@ pixel_y = 7 }, /turf/simulated/floor/carpet/rubber, -/area/horizon/zta) +/area/horizon/zat) "uOj" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -45661,7 +45661,7 @@ /obj/machinery/cell_charger, /obj/structure/table/standard, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "vkq" = ( /obj/structure/table/wood, /obj/item/modular_computer/laptop/preset/security/hos, @@ -46418,7 +46418,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "vFw" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/mauve{ @@ -46738,7 +46738,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "vMl" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -48155,7 +48155,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zta) +/area/horizon/zat) "wmT" = ( /obj/structure/railing/mapped, /obj/structure/platform/ledge{ @@ -48195,7 +48195,7 @@ }, /obj/structure/ship_weapon_dummy, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "wne" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -48231,7 +48231,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/extinguisher_cabinet/west, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "wok" = ( /obj/structure/platform{ dir = 1 @@ -48540,7 +48540,7 @@ name = "airlock_horizon_deck_2_levi" }, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "wuJ" = ( /obj/machinery/light, /obj/effect/floor_decal/corner_wide/green{ @@ -48663,7 +48663,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "wyb" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "surgery2" @@ -48915,7 +48915,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "wDX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ @@ -49072,7 +49072,7 @@ }, /obj/structure/closet/toolcloset, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "wIz" = ( /obj/structure/railing/mapped{ dir = 8 @@ -49398,7 +49398,7 @@ "wPb" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "wPj" = ( /obj/structure/lattice, /obj/structure/railing/mapped{ @@ -50970,7 +50970,7 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /obj/structure/grille, /turf/simulated/floor/plating, -/area/horizon/zta) +/area/horizon/zat) "xzV" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -51060,7 +51060,7 @@ "xDo" = ( /obj/structure/bed/stool/chair/office/bridge/generic, /turf/simulated/floor/reinforced, -/area/horizon/zta) +/area/horizon/zat) "xDv" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/condiment/shaker/salt{ @@ -52638,7 +52638,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zta) +/area/horizon/zat) "yjZ" = ( /obj/effect/floor_decal/industrial/loading/yellow, /obj/structure/platform{