From 3ced91e6e3c0f15c0fb8bc937fd5d55c050cc9c3 Mon Sep 17 00:00:00 2001 From: morrowwolf Date: Thu, 12 Oct 2023 18:14:07 -0400 Subject: [PATCH] Attempt to solve mapping issues (#3) * Initial * BAM --- code/controllers/subsystem/xeno_ai.dm | 136 --- maps/map_files/BigRed/BigRed.dmm | 414 +-------- .../BigRed/sprinkles/10.prison_breakout.dmm | 50 +- .../BigRed/sprinkles/25.chapel_cult.dmm | 8 +- .../BigRed/sprinkles/30.cargo_containers.dmm | 4 - .../BigRed/sprinkles/40.admin_pmc.dmm | 1 - .../BigRed/standalone/crashlanding-eva.dmm | 16 +- .../standalone/crashlanding-offices.dmm | 9 +- .../map_files/BigRed/standalone/medbay-v3.dmm | 37 +- maps/map_files/DesertDam/Desert_Dam.dmm | 774 ++-------------- .../DesertDam/greenriver/newbridge.dmm | 828 +++++++++--------- .../DesertDam/purpleriver/newbridge.dmm | 5 - .../standalone/crashlanding-upp-bar.dmm | 32 +- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 710 ++------------- .../sprinkles/10.scavshipholder.dmm | 7 +- .../FOP_v3_Sciannex/sprinkles/15.nogear.dmm | 8 +- .../sprinkles/15.wardenofficedecorated.dmm | 1 - .../sprinkles/20.gamertime.dmm | 1 - .../sprinkles/20.medicalhold.dmm | 1 - .../sprinkles/20.poolparty.dmm | 2 - .../sprinkles/25.researchprestine.dmm | 48 +- .../sprinkles/30.engineeroffice.dmm | 3 - .../sprinkles/30.pizzatime.dmm | 1 - .../Ice_Colony_v3/Shivas_Snowball.dmm | 602 ++----------- .../lz2-variations/eastsouth/full-closed.dmm | 168 ++-- .../lz2-variations/south-gate/blocked.dmm | 8 +- .../lz2-variations/south-gate/closed.dmm | 262 +++--- maps/map_files/Kutjevo/Kutjevo.dmm | 464 ++-------- .../LV522_Chances_Claim.dmm | 288 +----- maps/map_files/LV624/LV624.dmm | 580 ++---------- maps/map_files/LV624/armory/10.cheese.dmm | 8 +- maps/map_files/LV624/armory/10.extra.dmm | 8 +- maps/map_files/LV624/armory/10.looted.dmm | 8 +- .../LV624/cargospecial/cargospecial3_gear.dmm | 1 - maps/map_files/LV624/centralcaves/10.T.dmm | 10 +- maps/map_files/LV624/centralcaves/10.qc.dmm | 8 +- .../LV624/crashedship/10.digsite.dmm | 23 +- .../LV624/crashedship/10.swapped.dmm | 25 +- maps/map_files/LV624/gym/20.pool.dmm | 34 +- maps/map_files/LV624/gym/30.alternate.dmm | 17 +- maps/map_files/LV624/hydro/30.destroyed.dmm | 2 - maps/map_files/LV624/maintemple/1.intact.dmm | 36 +- maps/map_files/LV624/maintemple/2.flooded.dmm | 48 +- maps/map_files/LV624/medbay/10.destroyed.dmm | 19 +- .../LV624/medbay/30.larvasurgery.dmm | 5 - maps/map_files/LV624/science/10.yautja.dmm | 28 +- .../LV624/science/40.fullylocked.dmm | 49 +- .../sprinkles/20.lz-containers_swapped.dmm | 1 - .../sprinkles/30.nexuscenter_barricaded.dmm | 1 - maps/map_files/LV624/standalone/clfship.dmm | 6 - .../LV624/standalone/sandtemple-jungle.dmm | 1 - .../storage-crashed-ship/10.armorystorage.dmm | 5 - .../storage-crashed-ship/10.valuables.dmm | 5 - maps/map_files/New_Varadero/New_Varadero.dmm | 393 +-------- .../Sorokyne_Strata/Sorokyne_Strata.dmm | 505 +---------- maps/map_files/USS_Almayer/USS_Almayer.dmm | 28 +- maps/predship/huntership.dmm | 3 +- 57 files changed, 1175 insertions(+), 5570 deletions(-) diff --git a/code/controllers/subsystem/xeno_ai.dm b/code/controllers/subsystem/xeno_ai.dm index a4ac68cdbb..8ba29b5f7f 100644 --- a/code/controllers/subsystem/xeno_ai.dm +++ b/code/controllers/subsystem/xeno_ai.dm @@ -1,28 +1,3 @@ -/datum/config_entry/number/eval_weight_marine - config_entry_value = 8 - -/datum/config_entry/number/eval_weight_xeno_t1 - config_entry_value = -1 - -/datum/config_entry/number/eval_weight_xeno_t2 - config_entry_value = -2 - -/datum/config_entry/number/eval_weight_xeno_t3 - config_entry_value = -3 - -/datum/config_entry/number/eval_weight_xeno_queen - config_entry_value = -5 - -/datum/config_entry/number/eval_weight_offset - config_entry_value = 0 - -/* -/datum/config_entry/number/eval_distance_per_marine_from_hive - config_entry_value = 0.1 - -/datum/config_entry/number/eval_distance_per_xeno_from_hive - config_entry_value = -0.1 -*/ SUBSYSTEM_DEF(xeno_ai) name = "Xeno AI" @@ -57,7 +32,6 @@ SUBSYSTEM_DEF(xeno_ai) return if(!resumed) - //calculate_eval() src.current_run = ai_mobs.Copy() // Cache for sanic speed (lists are references anyways) var/list/current_run = src.current_run @@ -72,35 +46,6 @@ SUBSYSTEM_DEF(xeno_ai) if(MC_TICK_CHECK) return - -/datum/controller/subsystem/xeno_ai/proc/calculate_eval() - game_evaluation = CONFIG_GET(number/eval_weight_offset) - - for(var/i in GLOB.alive_human_list) - var/mob/living/carbon/human/H = i - if(H.client && is_ground_level(H.z) && !H.is_mob_incapacitated()) - game_evaluation += CONFIG_GET(number/eval_weight_marine) - - for(var/i in GLOB.xeno_mob_list) - var/mob/living/carbon/xenomorph/X = i - if(X.stat) - return - - switch(X.tier) - if(1) - game_evaluation += CONFIG_GET(number/eval_weight_xeno_t1) - if(2) - game_evaluation += CONFIG_GET(number/eval_weight_xeno_t1) - if(3) - game_evaluation += CONFIG_GET(number/eval_weight_xeno_t1) - - if(isqueen(X)) - game_evaluation += CONFIG_GET(number/eval_weight_xeno_queen) - - for(var/i in GLOB.evaluation_landmarks) - var/obj/effect/landmark/eval/E = i - E.calculate_eval() - /datum/controller/subsystem/xeno_ai/proc/add_ai(mob/living/carbon/xenomorph/X) if(X.mob_flags & AI_CONTROLLED) return @@ -110,84 +55,3 @@ SUBSYSTEM_DEF(xeno_ai) /datum/controller/subsystem/xeno_ai/proc/remove_ai(mob/living/carbon/xenomorph/X) X.mob_flags &= ~AI_CONTROLLED ai_mobs -= X - - -// I'm not a good enough mapper to properly lay these out on the maps, so they'll stay like this -GLOBAL_LIST_EMPTY(evaluation_landmarks) - -/area - var/list/eval_landmarks - -/obj/effect/landmark/eval - name = "Evaluation Landmark" - -/obj/effect/landmark/eval/Initialize(mapload, ...) - . = ..() - GLOB.evaluation_landmarks += src - var/area/A = get_area(src) - A.eval_landmarks += src - -/obj/effect/landmark/eval/Destroy() - var/area/A = get_area(src) - A.eval_landmarks -= src - GLOB.evaluation_landmarks -= src - return ..() - -/// Calculates the evaluation -/obj/effect/landmark/eval/proc/calculate_eval() - return 0 - -/obj/effect/landmark/eval/proc/calculate_eval_for_mob(mob/M) - -/// A landmark that calculates evaluation depending on the marines in an area -/obj/effect/landmark/eval/marine - name = "Marine Eval Landmark" - var/eval_per_marine = 0 - -/obj/effect/landmark/eval/marine/calculate_eval_for_mob(mob/M) - if(ishuman(M) && M.client && !M.is_mob_incapacitated()) - return eval_per_marine - -/obj/effect/landmark/eval/marine/calculate_eval() - var/area/A = get_area(src) - var/eval_amount = 0 - for(var/mob/living/carbon/human/H in A) - if(H.client && !H.is_mob_incapacitated()) - eval_amount += eval_per_marine - - return eval_amount - -/obj/effect/landmark/eval/marine/bad - eval_per_marine = 0.5 - -/obj/effect/landmark/eval/marine/good - eval_per_marine = -0.5 - -/obj/effect/landmark/eval/marine/very_good - eval_per_marine = -1 - -/obj/effect/landmark/eval/xeno - name = "Xeno Eval Landmark" - var/eval_per_xeno - -/obj/effect/landmark/eval/xeno/calculate_eval_for_mob(mob/M) - if(isxeno(M) && !M.stat) - return eval_per_xeno - -/obj/effect/landmark/eval/xeno/calculate_eval() - var/area/A = get_area(src) - var/eval_amount = 0 - for(var/mob/living/carbon/xenomorph/X in A) - if(!X.stat) - eval_amount += eval_per_xeno - - return eval_amount - -/obj/effect/landmark/eval/xeno/bad - eval_per_xeno = -0.5 - -/obj/effect/landmark/eval/xeno/good - eval_per_xeno = 0.5 - -/obj/effect/landmark/eval/xeno/very_good - eval_per_xeno = 1 diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index b29802bd65..6439378dba 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -140,7 +140,6 @@ /obj/structure/sign/safety/hvac{ pixel_x = -32 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -218,14 +217,12 @@ "aaK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, /area/bigredv2/outside/telecomm) "aaL" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -297,7 +294,6 @@ /area/bigredv2/outside/space_port) "aaV" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -313,7 +309,6 @@ /area/bigredv2/outside/space_port) "aaX" = ( /obj/structure/closet/secure_closet/injection, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/marshal_office) "aaY" = ( @@ -741,7 +736,6 @@ /area/bigredv2/caves_north) "acl" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "wood" }, @@ -794,7 +788,6 @@ /area/bigred/ground/garage_workshop) "acv" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -1143,7 +1136,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -1183,7 +1175,6 @@ /area/bigredv2/outside/marshal_office) "adC" = ( /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "white" }, @@ -1306,7 +1297,6 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /obj/item/paper/bigred/crazy, /turf/open/floor, /area/bigredv2/outside/marshal_office) @@ -1506,7 +1496,6 @@ /area/bigredv2/caves/lambda/xenobiology) "aew" = ( /obj/structure/closet/crate/internals, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "aex" = ( @@ -1694,7 +1683,6 @@ /area/bigredv2/caves/lambda/xenobiology) "afa" = ( /obj/structure/closet/secure_closet/chemical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whiteyellow" @@ -1770,15 +1758,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"afn" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -2342,7 +2321,6 @@ /area/bigredv2/outside/marshal_office) "agP" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "dark" }, @@ -2400,7 +2378,6 @@ /area/bigredv2/caves/lambda/xenobiology) "agY" = ( /obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whitegreenfull" }, @@ -3113,7 +3090,6 @@ dir = 4 }, /obj/item/device/defibrillator, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "whitegreenfull" }, @@ -3184,7 +3160,6 @@ /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 1; icon_state = "whitepurplecorner" @@ -3198,7 +3173,6 @@ /area/bigredv2/outside/dorms) "ajm" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "ajn" = ( @@ -3502,7 +3476,6 @@ /area/bigredv2/outside/nw) "aka" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "akc" = ( @@ -3724,7 +3697,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitegreen_v" @@ -4056,7 +4028,6 @@ /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "alL" = ( -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ dir = 9; icon_state = "warnplate" @@ -4722,7 +4693,6 @@ /area/bigredv2/outside/marshal_office) "anE" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "cult" }, @@ -5967,7 +5937,6 @@ /area/bigredv2/outside/medical) "arf" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -6094,7 +6063,6 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -6262,7 +6230,6 @@ dir = 4 }, /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitebluefull" @@ -6705,7 +6672,6 @@ /obj/item/storage/firstaid/o2, /obj/item/storage/firstaid/toxin, /obj/item/storage/firstaid/rad, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 1; icon_state = "elevatorshaft" @@ -7010,7 +6976,6 @@ dir = 4 }, /obj/item/tool/hand_labeler, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -7153,7 +7118,6 @@ /area/bigredv2/caves/lambda/breakroom) "aun" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" @@ -8939,7 +8903,6 @@ /area/bigredv2/caves/lambda/research) "azh" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective, /obj/item/clothing/glasses/science, /turf/open/floor{ dir = 1; @@ -9891,7 +9854,6 @@ /area/bigredv2/outside/medical) "aBP" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whitegreencorner" }, @@ -10235,7 +10197,6 @@ /area/bigredv2/outside/c) "aCP" = ( /obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -10258,7 +10219,6 @@ /area/bigredv2/outside/dorms) "aCS" = ( /obj/structure/closet/boxinggloves, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -10767,7 +10727,6 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -10876,7 +10835,6 @@ "aEB" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -11077,7 +11035,6 @@ "aFf" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 10; icon_state = "whitepurple" @@ -11100,7 +11057,6 @@ "aFi" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light/built, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 6; icon_state = "whitepurple" @@ -11456,7 +11412,6 @@ /area/bigredv2/outside/library) "aGd" = ( /obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 10; icon_state = "warnwhite" @@ -11507,7 +11462,6 @@ /area/bigredv2/caves/lambda/research) "aGj" = ( /obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 6; icon_state = "warnwhite" @@ -11674,7 +11628,6 @@ /area/bigredv2/outside/medical) "aGD" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective, /turf/open/floor{ icon_state = "white" }, @@ -11745,7 +11698,6 @@ /area/bigredv2/outside/library) "aGP" = ( /obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -11793,7 +11745,6 @@ "aGX" = ( /obj/structure/surface/table, /obj/item/tool/weedkiller/D24, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -11824,7 +11775,6 @@ "aHa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/spaceacillin, -/obj/structure/machinery/computer/objective, /turf/open/floor{ icon_state = "white" }, @@ -12205,7 +12155,6 @@ /area/bigredv2/outside/virology) "aIc" = ( /obj/structure/closet/wardrobe/virology_white, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -12267,7 +12216,6 @@ dir = 4 }, /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/office_complex) "aIp" = ( @@ -12523,14 +12471,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aIY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/admin_building) "aIZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -12894,7 +12834,6 @@ /area/bigredv2/caves/lambda/research) "aJT" = ( /obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -13311,7 +13250,6 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 6; icon_state = "darkgreen2" @@ -13368,7 +13306,6 @@ /area/bigredv2/outside/office_complex) "aLg" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "grimy" }, @@ -13394,7 +13331,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/cargo) "aLn" = ( @@ -13557,7 +13493,6 @@ /area/bigredv2/caves/lambda/research) "aLJ" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/engineering) "aLM" = ( @@ -13903,7 +13838,6 @@ }, /obj/structure/surface/table, /obj/item/tool/surgery/retractor, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "darkyellow2" @@ -14031,7 +13965,6 @@ /area/bigredv2/caves/lambda/virology) "aMZ" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -14436,7 +14369,6 @@ /area/bigredv2/outside/hydroponics) "aOc" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/hydroponics) "aOd" = ( @@ -14676,7 +14608,6 @@ "aOJ" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "aOK" = ( @@ -15081,7 +15012,6 @@ /area/bigredv2/outside/general_store) "aPH" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "darkred2" @@ -15204,7 +15134,6 @@ /area/bigredv2/outside/bar) "aPZ" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "darkredcorners2" @@ -15368,7 +15297,6 @@ }, /area/bigredv2/outside/e) "aQv" = ( -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ dir = 1; icon_state = "podhatch" @@ -16079,7 +16007,6 @@ }, /area/bigredv2/caves/lambda/virology) "aSp" = ( -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 9; icon_state = "darkgreen2" @@ -16385,7 +16312,6 @@ /area/bigredv2/outside/admin_building) "aTb" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -16997,7 +16923,6 @@ "aUJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/science, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor{ dir = 6; @@ -17085,7 +17010,6 @@ "aUY" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/coffee, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 5; icon_state = "whitebluefull" @@ -17754,7 +17678,6 @@ "aWS" = ( /obj/structure/surface/table, /obj/item/reagent_container/glass/bottle/toxin, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -18045,7 +17968,6 @@ /area/bigredv2/outside/admin_building) "aXQ" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 6; icon_state = "darkblue2" @@ -18167,7 +18089,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -18245,7 +18166,6 @@ /area/bigredv2/outside/virology) "aYB" = ( /obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/bigredv2/outside/virology) "aYC" = ( @@ -18455,7 +18375,6 @@ req_access = null; req_one_access_txt = "21;101" }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/cargo) "aZp" = ( @@ -19058,8 +18977,6 @@ /area/bigredv2/outside/admin_building) "bbn" = ( /obj/structure/safe, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "wood" }, @@ -19198,7 +19115,6 @@ }, /obj/structure/surface/table/woodentable, /obj/item/storage/bible, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "cult" }, @@ -20286,7 +20202,6 @@ /area/bigredv2/outside/office_complex) "bfe" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -20603,7 +20518,6 @@ "bfX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "bot" @@ -20757,7 +20671,6 @@ /area/bigredv2/outside/cargo) "bgr" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/cargo) "bgs" = ( @@ -21062,7 +20975,6 @@ "bhm" = ( /obj/structure/surface/table, /obj/item/trash/kepler, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -21345,13 +21257,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/cargo) -"bix" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) "biy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -21814,7 +21719,6 @@ /area/bigredv2/outside/cargo) "bkl" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor, /area/bigredv2/outside/cargo) "bkn" = ( @@ -21997,19 +21901,6 @@ icon_state = "mars_dirt_11" }, /area/bigredv2/outside/se) -"bkY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) "blb" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/floor, @@ -22334,7 +22225,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/engineering) "bmx" = ( @@ -23311,11 +23201,6 @@ }, /turf/open/floor, /area/bigredv2/outside/filtration_plant) -"bqA" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "bqE" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -24492,7 +24377,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -25301,7 +25185,6 @@ /area/bigredv2/caves/eta/research) "bzH" = ( /obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 1; icon_state = "darkblue2" @@ -25561,7 +25444,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ icon_state = "darkish" }, @@ -26131,7 +26013,6 @@ /area/bigredv2/caves/eta/xenobiology) "bCj" = ( /obj/structure/closet/l3closet/scientist, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 1; icon_state = "darkgreen2" @@ -26688,7 +26569,6 @@ "bDL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "wood" }, @@ -26962,7 +26842,6 @@ /area/bigredv2/caves/eta/living) "bEB" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "darkblue2" @@ -27175,11 +27054,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/lambda/xenobiology) -"bNA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/dorms) "bNE" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor{ @@ -27271,11 +27145,6 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) -"bXe" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) "bYa" = ( /obj/item/reagent_container/spray/cleaner, /turf/open/floor, @@ -27309,7 +27178,6 @@ /area/bigredv2/outside/s) "caN" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "carpet15-15" @@ -27413,12 +27281,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"coT" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) "cpc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -27495,10 +27357,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"cwk" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) "cxi" = ( /obj/structure/machinery/light{ dir = 4 @@ -27598,7 +27456,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "wood" }, @@ -27636,13 +27493,6 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves_north) -"cLZ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) "cNH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -27743,7 +27593,6 @@ /area/bigredv2/outside/lz2_west_cas) "cZj" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/bigredv2/caves/mining) "daf" = ( @@ -27934,10 +27783,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) -"dAi" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) "dBa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 9 @@ -27988,7 +27833,6 @@ "dEf" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigred/ground/garage_workshop) "dEr" = ( @@ -28502,7 +28346,6 @@ /area/bigredv2/caves/mining) "eDQ" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigred/ground/garage_workshop) "eDS" = ( @@ -28575,17 +28418,6 @@ icon_state = "darkpurplecorners2" }, /area/bigredv2/caves/lambda/breakroom) -"eJU" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "eKU" = ( /obj/structure/machinery/door_control{ id = "filtration"; @@ -28595,13 +28427,6 @@ }, /turf/open/floor, /area/bigredv2/outside/filtration_plant) -"eLp" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) "eLq" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -28720,12 +28545,10 @@ "eWy" = ( /obj/effect/decal/cleanable/dirt, /obj/item/moneybag, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/bigredv2/caves/mining) "eWG" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -28762,7 +28585,6 @@ "fcG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -28809,15 +28631,6 @@ "fin" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) -"fjz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) "fjF" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/mars{ @@ -29475,7 +29288,6 @@ desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; name = "Mining explosives" }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/bigredv2/caves/mining) "gCE" = ( @@ -29743,11 +29555,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) -"hsF" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) "hsJ" = ( /obj/item/ore, /turf/open/floor{ @@ -30231,13 +30038,6 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves_north) -"itL" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "iuu" = ( /turf/open/mars_cave{ icon_state = "mars_cave_16" @@ -30290,7 +30090,6 @@ "iAy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d96, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -30422,14 +30221,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/telecomm/n_cave) -"iRw" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) "iRG" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -30474,14 +30265,6 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"iYN" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) "iYR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -30734,13 +30517,6 @@ icon_state = "darkish" }, /area/bigredv2/caves/lambda/virology) -"jAm" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -30846,7 +30622,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigred/ground/garage_workshop) "jIQ" = ( @@ -31454,10 +31229,6 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/research) -"kGw" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) "kHK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -31864,14 +31635,6 @@ icon_state = "wood" }, /area/bigredv2/outside/library) -"lDp" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) "lEw" = ( /obj/item/tool/pickaxe{ pixel_y = -3 @@ -32021,12 +31784,6 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_se) -"lVm" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "lVr" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -32905,7 +32662,6 @@ "ocG" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "wood" }, @@ -33112,11 +32868,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/research) -"orZ" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) "otb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -33211,14 +32962,6 @@ icon_state = "mars_cave_5" }, /area/bigredv2/caves_virology) -"oDB" = ( -/obj/structure/closet/l3closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/general_offices) "oEJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -33462,13 +33205,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_cave_cas) -"pbs" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/bigredv2/caves/eta/living) "pbK" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -33605,12 +33341,6 @@ /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"psE" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) "ptL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33777,11 +33507,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"pQv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/caves) "pQE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -33802,18 +33527,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"pTA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) "pTH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave{ @@ -33854,7 +33567,6 @@ pixel_y = 27 }, /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -34260,16 +33972,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/eta) -"qNu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "qNP" = ( /obj/structure/bed/chair{ dir = 8 @@ -35095,7 +34797,6 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -35198,13 +34899,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"swJ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) "sxs" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -35365,10 +35059,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) -"sLS" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) "sNQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_11" @@ -35738,13 +35428,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/telecomm/lz2_cave) -"tAe" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) "tAW" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor{ @@ -36678,13 +36361,6 @@ icon_state = "mars_dirt_14" }, /area/bigredv2/outside/eta) -"vti" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) "vty" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" @@ -37062,11 +36738,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"whE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) "whZ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor{ @@ -37653,11 +37324,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) -"xqf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "xrp" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" @@ -38005,7 +37671,6 @@ pixel_x = 17 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" @@ -38173,7 +37838,6 @@ /obj/item/device/radio{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/mars_cave{ icon_state = "mars_cave_3" }, @@ -42895,7 +42559,7 @@ aWg aRH aNc aoD -itL +aYA aRH aoD aao @@ -44851,7 +44515,7 @@ asl aYC aNi asl -swJ +aYC aNi asl aYC @@ -48810,7 +48474,7 @@ rdR bvK btw btw -dAi +btw hEC keg euF @@ -50075,7 +49739,7 @@ bgE bhe asK bio -cwk +aZu aZu aZu asK @@ -53484,7 +53148,7 @@ ame aic aer afS -cLZ +bNE alX amj amj @@ -54320,7 +53984,7 @@ iRf akh akh akh -lVm +aWy aad akZ akZ @@ -55220,7 +54884,7 @@ amg aic aer afS -eLp +bNE alX aqD aqD @@ -55267,7 +54931,7 @@ asT aYM aZB aZT -aIY +caN bbj caN bcE @@ -56724,7 +56388,7 @@ acP acP asc acp -afn +xyu afT agE afS @@ -58157,7 +57821,7 @@ bxK bxc byg bxd -kGw +bxc aBE bzp ebZ @@ -58258,7 +57922,7 @@ amr aic aer afS -cLZ +bNE acp aqH arp @@ -58698,7 +58362,7 @@ aqH aqL asc amn -vti +atB atY atY atY @@ -58945,7 +58609,7 @@ aOM aPS aUb aof -sLS +aTa aUe aof aVX @@ -59139,7 +58803,7 @@ aty atB cHI aty -vti +atB mhF azN atY @@ -59853,7 +59517,7 @@ bkE bkE bkE ayF -orZ +boW bkE bpS blX @@ -60033,7 +59697,7 @@ aNO aOO aPW aof -jAm +aNO aOO aPW aof @@ -60873,7 +60537,7 @@ atY amn asJ awo -bNA +awZ axI ayp asJ @@ -61589,7 +61253,7 @@ bng bnF bof bov -whE +bmF bpp bpU bqw @@ -61877,7 +61541,7 @@ sbQ knN aDv xfW -pbs +xfW bEx xfW aDv @@ -62667,7 +62331,7 @@ aHF aHF awp bkE -hsF +blC awp bmG bpo @@ -63038,7 +62702,7 @@ acP acP asc amI -vti +atB atY auU asJ @@ -63279,7 +62943,7 @@ aJo aEO aEO aEO -psE +aEO aNS aEO aEO @@ -63604,7 +63268,7 @@ bCU pNa bDh aDX -tAe +fyz kqS kqS bDK @@ -64453,11 +64117,11 @@ aBA byT bzi aBw -lDp bzM -iRw -iYN -iRw +bzM +bzM +bzM +bzM aBv aBw aBw @@ -64473,7 +64137,7 @@ aBw aBv aDY aDY -fjz +aRf bDA bDL aDX @@ -65230,7 +64894,7 @@ aEO aEO aJr aEO -coT +aEO aEO aEO aNY @@ -65637,7 +65301,7 @@ aao ako aos ape -eJU +apP aqS aos ako @@ -66509,7 +66173,7 @@ apR aou arw ako -bqA +asS atG auc ako @@ -68048,7 +67712,7 @@ aEU aCf gAE anT -bix +aIz aIC aKD aLB @@ -68109,7 +67773,7 @@ pcF kBn iZA dIb -pQv +fwV fwV fwV kBn @@ -68249,7 +67913,7 @@ asV aoB aue ako -xqf +atE apc apc axR @@ -68463,7 +68127,7 @@ aqW arx ako asW -oDB +asW asW ako avJ @@ -76469,7 +76133,7 @@ tQw aao aao adZ -bXe +aex aex afA adZ @@ -79294,7 +78958,7 @@ wQC eFh afd agi -qNu +agZ adZ aiq agc @@ -79774,7 +79438,7 @@ gan tSI xfN jwj -pTA +gan tSI anI aao @@ -81250,7 +80914,7 @@ agl ahb agl aiu -bkY +aiu ajw adZ aao diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm index 931fb53a0b..e2e995af42 100644 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -61,7 +61,6 @@ /area/bigredv2/outside/n) "ak" = ( /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "white" }, @@ -632,7 +631,6 @@ /area/bigredv2/outside/marshal_office) "bO" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "darkish" }, @@ -669,7 +667,6 @@ "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "dark" }, @@ -1153,43 +1150,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"fD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"gJ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ix" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"qm" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"zX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) (1,1,1) = {" aa @@ -1236,7 +1196,7 @@ cA bi bG cZ -gJ +de dj "} (3,1,1) = {" @@ -1332,7 +1292,7 @@ cA bk bG cZ -ix +de dj "} (7,1,1) = {" @@ -1476,7 +1436,7 @@ cE cR bG da -qm +df dj "} (13,1,1) = {" @@ -1520,7 +1480,7 @@ cZ cc bG aP -fD +bc bi bL cZ @@ -1606,7 +1566,7 @@ aj aj ah aE -zX +aN aU be ah diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm index 7acf197b3d..715795eaac 100644 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -51,11 +51,6 @@ icon_state = "darkish" }, /area/bigredv2/outside/chapel) -"aj" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) "ak" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -303,7 +298,6 @@ /area/bigredv2/outside/chapel) "aR" = ( /obj/item/organ/heart, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "cult" }, @@ -550,7 +544,7 @@ ab "} (10,1,1) = {" ac -aj +ae av aI aW diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm index 30531e6b08..a9d1d00f4e 100644 --- a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm +++ b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm @@ -370,7 +370,6 @@ /area/bigredv2/outside/cargo) "bh" = ( /obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "bot" @@ -519,7 +518,6 @@ /area/bigredv2/outside/cargo) "bQ" = ( /obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/cargo) "bR" = ( @@ -593,7 +591,6 @@ /area/bigredv2/outside/cargo) "cb" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor, /area/bigredv2/outside/cargo) "cc" = ( @@ -601,7 +598,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/cargo) "cd" = ( diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index e2b3e939a2..2a05ab7c46 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -214,7 +214,6 @@ "aK" = ( /obj/structure/surface/table, /obj/item/device/radio/marine, -/obj/effect/landmark/objective_landmark/medium, /obj/item/weapon/gun/pistol/m4a3/training{ name = "dented M4A3 service pistol" }, diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index fb08fd251c..d399d2d093 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -1183,12 +1183,6 @@ icon_state = "wood-broken6" }, /area/bigredv2/outside/general_offices) -"oB" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) "xT" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -1206,12 +1200,6 @@ icon_state = "panelscorched" }, /area/bigredv2/outside/general_offices) -"Kf" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/general_offices) "Zt" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/corpsespawner/wygoon, @@ -1573,7 +1561,7 @@ aB aO aO aX -Kf +aW aO aO aO @@ -2041,7 +2029,7 @@ bb bb bR bb -oB +bb bb cx aI diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index 652b4df3bd..0bc2bb494d 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -1381,7 +1381,6 @@ "ej" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -1617,12 +1616,6 @@ icon_state = "rasputin15" }, /area/bigredv2/outside/office_complex) -"Vg" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/bigredv2/outside/office_complex) "XH" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -1992,7 +1985,7 @@ aC aO aV aV -Vg +bm yS Lk id diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm index aded8e8bb7..2e89ccc9f4 100644 --- a/maps/map_files/BigRed/standalone/medbay-v3.dmm +++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm @@ -267,7 +267,6 @@ /area/bigredv2/outside/medical) "aO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -1335,7 +1334,6 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitebluefull" @@ -2056,33 +2054,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/medical) -"om" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"DL" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/medical) -"GP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/bigredv2/outside/medical) -"MK" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/bigredv2/outside/medical) "Xh" = ( /obj/structure/transmitter/colony_net{ phone_category = "Solaris Ridge"; @@ -2158,7 +2129,7 @@ Xh aM aU ai -DL +aT bR bn ai @@ -2646,7 +2617,7 @@ dw dH bn aT -MK +aM bD aL aM @@ -2714,7 +2685,7 @@ aa "} (23,1,1) = {" af -om +at at bh bh @@ -2788,7 +2759,7 @@ dP dX bZ er -GP +aQ ed aL aD diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index ed7688070a..17a02d24ce 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -1693,7 +1693,6 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -1893,7 +1892,6 @@ /area/desert_dam/exterior/valley/valley_labs) "afY" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "red" @@ -3656,7 +3654,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alg" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 1; icon_state = "darkpurple2" @@ -3699,7 +3696,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "alm" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 8; icon_state = "darkpurple2" @@ -5753,7 +5749,6 @@ /area/desert_dam/interior/dam_interior/west_tunnel) "ark" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 8; icon_state = "darkred2" @@ -7142,7 +7137,6 @@ "avn" = ( /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "red" @@ -7161,7 +7155,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "avp" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) "avq" = ( @@ -7224,7 +7217,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avA" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkyellow2" }, @@ -7929,7 +7921,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "axB" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 6; icon_state = "red" @@ -8084,7 +8075,6 @@ /area/desert_dam/building/security/office) "ayb" = ( /obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "wood" }, @@ -8106,13 +8096,6 @@ icon_state = "wood" }, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayg" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -8247,7 +8230,6 @@ /area/desert_dam/exterior/valley/valley_wilderness) "ayE" = ( /obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 1; icon_state = "blue" @@ -8432,7 +8414,6 @@ /area/desert_dam/building/administration/control_room) "azg" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10 }, @@ -9428,7 +9409,6 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aCq" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "redcorner" }, @@ -9689,7 +9669,6 @@ "aDi" = ( /obj/structure/surface/table/woodentable, /obj/item/ammo_magazine/shotgun/slugs, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDk" = ( @@ -12813,7 +12792,6 @@ /area/desert_dam/building/substation/northeast) "aMA" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 9; icon_state = "darkyellow2" @@ -12934,7 +12912,6 @@ "aMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stool, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -14533,7 +14510,6 @@ /area/desert_dam/building/water_treatment_two) "aRX" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 5; icon_state = "darkyellow2" @@ -14580,7 +14556,6 @@ "aSf" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "darkyellow2" @@ -14715,7 +14690,6 @@ }, /obj/item/tool/stamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 10 }, @@ -15613,7 +15587,6 @@ /area/desert_dam/building/administration/control_room) "aVJ" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/office) "aVK" = ( @@ -15637,7 +15610,6 @@ /area/desert_dam/building/security/marshals_office) "aVN" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/office) "aVO" = ( @@ -16048,7 +16020,6 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aXf" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellow2" @@ -16252,7 +16223,6 @@ /area/desert_dam/building/security/detective) "aXN" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) "aXO" = ( @@ -16316,7 +16286,6 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aXX" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) "aXY" = ( @@ -16326,7 +16295,6 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aXZ" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) "aYa" = ( @@ -16968,13 +16936,6 @@ icon_state = "dark2" }, /area/desert_dam/building/administration/archives) -"aZW" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) "aZX" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -17084,7 +17045,6 @@ /area/desert_dam/exterior/valley/valley_telecoms) "bap" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "darkred2" @@ -17092,7 +17052,6 @@ /area/desert_dam/building/administration/lobby) "baq" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 1; icon_state = "darkred2" @@ -17489,7 +17448,6 @@ dir = 1 }, /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 9; icon_state = "darkbrown2" @@ -18065,7 +18023,6 @@ /area/desert_dam/exterior/valley/valley_northwest) "bdB" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) "bdC" = ( @@ -18184,7 +18141,6 @@ /area/desert_dam/building/water_treatment_two/hallway) "bdT" = ( /obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/detective) "bdU" = ( @@ -18695,7 +18651,6 @@ /area/desert_dam/building/security/courtroom) "bfA" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) "bfB" = ( @@ -20262,7 +20217,6 @@ /area/desert_dam/building/water_treatment_two/lobby) "bkO" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 6; icon_state = "red" @@ -20619,7 +20573,6 @@ health = 80 }, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" @@ -20638,7 +20591,6 @@ /area/desert_dam/interior/dam_interior/tech_storage) "bma" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 9; icon_state = "darkred2" @@ -21056,7 +21008,6 @@ /area/desert_dam/interior/dam_interior/tech_storage) "bnm" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 8; icon_state = "darkred2" @@ -21866,7 +21817,6 @@ dir = 2; icon_state = "pipe-c" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellow2" @@ -22288,7 +22238,6 @@ /area/desert_dam/exterior/valley/valley_mining) "brm" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -22816,7 +22765,6 @@ /area/desert_dam/building/security/southern_hallway) "bsR" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) "bsS" = ( @@ -22943,7 +22891,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 5; icon_state = "darkbrown2" @@ -23116,7 +23063,6 @@ /area/desert_dam/building/security/southern_hallway) "bua" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) "bub" = ( @@ -23168,7 +23114,6 @@ /area/desert_dam/exterior/valley/valley_mining) "bui" = ( /obj/structure/closet/bombclosetsecurity, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -23571,9 +23516,6 @@ /area/desert_dam/building/warehouse/warehouse) "bvB" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, /turf/open/floor{ icon_state = "wood" }, @@ -27172,7 +27114,6 @@ amount = 50 }, /obj/item/storage/briefcase/inflatable, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 4; icon_state = "green" @@ -27314,7 +27255,6 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "bIb" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellow2" @@ -27325,7 +27265,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellow2" @@ -27680,7 +27619,6 @@ /area/desert_dam/interior/dam_interior/hanger) "bJv" = ( /obj/structure/bed/stool, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 8; icon_state = "darkyellow2" @@ -28241,7 +28179,6 @@ /area/desert_dam/interior/dam_interior/lobby) "bLu" = ( /obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 1; icon_state = "whitered" @@ -28425,7 +28362,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -29499,7 +29435,6 @@ /obj/structure/machinery/door/window/brigdoor/northleft{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark2" }, @@ -29571,14 +29506,12 @@ /area/desert_dam/interior/dam_interior/workshop) "bPT" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, /area/desert_dam/interior/dam_interior/office) "bPU" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -29596,7 +29529,6 @@ "bPW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/briefcase, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "carpet13-5" @@ -29782,14 +29714,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, -/area/desert_dam/building/security/armory) -"bQx" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_marked" }, @@ -32864,7 +32788,6 @@ /area/desert_dam/exterior/river/riverside_central_south) "bZR" = ( /obj/item/trash/semki, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) "bZS" = ( @@ -33805,7 +33728,6 @@ /area/desert_dam/interior/dam_interior/break_room) "ccE" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "whiteyellow" }, @@ -34133,7 +34055,6 @@ /obj/item/reagent_container/ld50_syringe/choral, /obj/item/reagent_container/ld50_syringe/choral, /obj/item/reagent_container/ld50_syringe/choral, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "cdJ" = ( @@ -34240,7 +34161,6 @@ /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "grimy" }, @@ -35530,7 +35450,6 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ dir = 4; icon_state = "warnplate" @@ -35722,7 +35641,6 @@ "cju" = ( /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "whiteyellow" @@ -36065,7 +35983,6 @@ /area/desert_dam/exterior/river/riverside_south) "cky" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "darkbrown2" @@ -36519,7 +36436,6 @@ /obj/structure/surface/table, /obj/item/device/autopsy_scanner, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 8; icon_state = "sterile_white" @@ -37607,7 +37523,6 @@ /area/desert_dam/building/medical/chemistry) "cpD" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whitepurplecorner" }, @@ -38549,7 +38464,6 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -39344,7 +39258,6 @@ /area/desert_dam/building/medical/east_wing_hallway) "cvh" = ( /obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) "cvi" = ( @@ -39459,7 +39372,6 @@ /obj/structure/surface/table, /obj/item/folder/yellow, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkyellow2" }, @@ -39816,7 +39728,6 @@ /obj/structure/machinery/door/window/brigdoor/northleft{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean2" @@ -40369,7 +40280,6 @@ pixel_x = -5; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 5; icon_state = "whitered" @@ -40406,7 +40316,6 @@ pixel_x = -5; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 5; icon_state = "whitered" @@ -40431,7 +40340,6 @@ dir = 4 }, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) "cyt" = ( @@ -41111,7 +41019,6 @@ /area/desert_dam/building/medical/office1) "cAC" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 5; icon_state = "whitered" @@ -41126,7 +41033,6 @@ /area/desert_dam/building/medical/office1) "cAE" = ( /obj/structure/closet/secure_closet/medical_doctor, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 1; icon_state = "whitered" @@ -41154,7 +41060,6 @@ icon_state = "pipe-j2" }, /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 4; icon_state = "whitegreen" @@ -41437,14 +41342,6 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/surgery_room_two) -"cBr" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) "cBs" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -42233,7 +42130,6 @@ /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/kpack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 10 }, @@ -43873,7 +43769,6 @@ /area/desert_dam/building/medical/east_wing_hallway) "cIM" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 9; icon_state = "whitegreen" @@ -44378,7 +44273,6 @@ pixel_x = 6; pixel_y = 10 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -44663,7 +44557,6 @@ dir = 1 }, /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -45176,14 +45069,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/warehouse/warehouse) -"cNr" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) "cNs" = ( /obj/structure/prop/dam/gravestone, /turf/open/desert/dirt, @@ -46065,7 +45950,6 @@ /area/desert_dam/exterior/valley/valley_cargo) "cQd" = ( /obj/item/trash/cheesie, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) "cQe" = ( @@ -46114,7 +45998,6 @@ "cQl" = ( /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 4; icon_state = "red" @@ -49056,7 +48939,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ dir = 1; icon_state = "vault" @@ -49558,7 +49440,6 @@ /area/desert_dam/building/cafeteria/cafeteria) "deH" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -49923,7 +49804,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) "dga" = ( @@ -50044,7 +49924,6 @@ /area/desert_dam/building/warehouse/loading) "dgt" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -51428,7 +51307,6 @@ /area/desert_dam/building/water_treatment_one/lobby) "dsa" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 5; icon_state = "red" @@ -52323,7 +52201,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 1; icon_state = "blue" @@ -52439,7 +52316,6 @@ /area/desert_dam/building/water_treatment_one/equipment) "dzj" = ( /obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -52575,11 +52451,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"dzY" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/objective, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) "dAd" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, @@ -53041,7 +52912,6 @@ "dCw" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c10, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) "dCy" = ( @@ -53981,7 +53851,6 @@ /obj/structure/surface/table, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 8; icon_state = "sterile_white" @@ -54366,7 +54235,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 1; icon_state = "blue" @@ -58632,10 +58500,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dXL" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) "dXN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -58928,7 +58792,6 @@ /area/desert_dam/building/dorms/hallway_westwing) "dZT" = ( /obj/structure/closet/athletic_mixed, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "wood" }, @@ -59225,7 +59088,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) "ebx" = ( @@ -60037,20 +59899,6 @@ "eft" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"efT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) "ehg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -60414,14 +60262,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"eTi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) "eVk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -60429,13 +60269,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"eVo" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/deathrow) "eVJ" = ( /obj/structure/window/framed/chigusa, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -60461,13 +60294,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"eYn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) "eYK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison{ @@ -60556,21 +60382,6 @@ }, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/temple) -"flj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"flq" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) "flu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached{ @@ -60706,13 +60517,6 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"fHJ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "fHX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/xeno_hive_spawn, @@ -60879,14 +60683,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"gmk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) "gmZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "warehouse_dam_3"; @@ -61012,13 +60808,6 @@ "gGC" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) -"gIA" = ( -/obj/structure/toilet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) "gIS" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -61178,7 +60967,6 @@ /area/desert_dam/exterior/valley/south_valley_dam) "het" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective, /turf/open/floor/prison{ dir = 1; icon_state = "red" @@ -61417,7 +61205,6 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "hWz" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) "ibg" = ( @@ -61477,24 +61264,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) -"ifh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ifB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/observation) "igf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -61504,24 +61273,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ihT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"iiQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) "ijc" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ @@ -61585,13 +61336,6 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"iuY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_northwing) "ivd" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -61663,18 +61407,6 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_wilderness) -"iIB" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"iJC" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) "iNg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; @@ -61769,14 +61501,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"jci" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) "jcK" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, @@ -61800,13 +61524,6 @@ icon_state = "cement_sunbleached14" }, /area/desert_dam/exterior/valley/valley_hydro) -"jre" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) "jrV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -61831,13 +61548,6 @@ icon_state = "bright_clean" }, /area/desert_dam/building/mining/workshop) -"jvo" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) "jvZ" = ( /obj/structure/platform{ dir = 1 @@ -61865,26 +61575,12 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"jAr" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) "jAS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_civilian) -"jBh" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/atmos_storage) "jCJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, @@ -61909,17 +61605,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"jJn" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"jJE" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "jLI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -62049,13 +61734,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"knm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) "kry" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -62226,14 +61904,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/mining/workshop_foyer) -"leJ" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/mining/workshop_foyer) "leZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -62275,11 +61945,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/north_wing_hallway) -"ljB" = ( -/obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "ljO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/van{ @@ -62326,26 +61991,11 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"ltq" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) "ltE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"ltH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "lwh" = ( /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ pixel_x = -32 @@ -62379,16 +62029,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/cafeteria/loading) -"lAb" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) "lDT" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -62438,14 +62078,6 @@ icon_state = "sterile_white" }, /area/desert_dam/building/medical/north_wing_hallway) -"lLI" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "lMc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, @@ -62514,15 +62146,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"mar" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "mbl" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ @@ -62584,7 +62207,6 @@ /area/desert_dam/exterior/valley/valley_labs) "mhU" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -62770,14 +62392,6 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/cafeteria) -"mNC" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "mOS" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, @@ -62814,14 +62428,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"mZa" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) "mZj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -62831,10 +62437,6 @@ icon_state = "cement_sunbleached3" }, /area/desert_dam/exterior/valley/valley_crashsite) -"naF" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) "naH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -62860,12 +62462,6 @@ }, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) -"ngk" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) "ngo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -62916,13 +62512,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"nnl" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/restroom) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -62932,7 +62521,6 @@ /area/desert_dam/exterior/valley/valley_civilian) "ntt" = ( /obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "floor_marked" }, @@ -62982,13 +62570,6 @@ /obj/structure/closet/coffin/predator, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"nFW" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) "nIz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison{ @@ -63038,14 +62619,6 @@ icon_state = "darkyellowcorners2" }, /area/desert_dam/interior/dam_interior/control_room) -"nTn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "nTp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -63232,13 +62805,6 @@ icon_state = "cement_sunbleached2" }, /area/desert_dam/exterior/landing_pad_one) -"oHw" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) "oHA" = ( /obj/structure/desertdam/decals/road_stop{ dir = 4; @@ -63291,25 +62857,6 @@ icon_state = "cement_sunbleached15" }, /area/desert_dam/exterior/valley/valley_hydro) -"oQK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"oRZ" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) "oUr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/desert/dirt, @@ -63424,7 +62971,6 @@ /area/desert_dam/exterior/valley/valley_cargo) "ppS" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 8; icon_state = "whitegreen" @@ -63789,20 +63335,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"qGb" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) "qGd" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "qHt" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark2" }, @@ -63903,7 +63441,6 @@ /area/desert_dam/building/water_treatment_one/control_room) "qYC" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ icon_state = "dark2" }, @@ -64072,20 +63609,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"rDa" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "rEa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) "rEH" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "whiteyellow" }, @@ -64143,13 +63672,6 @@ icon_state = "warning" }, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"rOa" = ( -/obj/structure/toilet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) "rPp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -64269,7 +63791,6 @@ pixel_x = 5; pixel_y = 6 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "whiteyellow" @@ -64457,27 +63978,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"sOu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"sPL" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) "sPS" = ( /turf/open/desert/dirt{ dir = 4; @@ -64643,11 +64143,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/telecomm/lz2_storage) -"tuA" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) "tuC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -64657,19 +64152,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) -"txD" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) "tyc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -64704,13 +64186,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"tCn" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) "tEn" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -64771,14 +64246,6 @@ icon_state = "cement_sunbleached14" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"tLQ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "tMi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, @@ -64815,25 +64282,12 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"tVX" = ( -/obj/structure/sink, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) "tXS" = ( /turf/open/desert/dirt{ dir = 1; icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/south_valley_dam) -"tYS" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) "tZQ" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/rock) @@ -64882,14 +64336,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"ujl" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "ukQ" = ( /obj/structure/machinery/light{ dir = 8 @@ -64948,15 +64394,6 @@ "uvf" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_xenoflora) -"uvh" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) "uxs" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt{ @@ -65129,14 +64566,6 @@ icon_state = "whiteyellow" }, /area/desert_dam/interior/dam_interior/lobby) -"vhA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "vir" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65182,14 +64611,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vpR" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "vqt" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -65459,14 +64880,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/cafeteria/loading) -"wnE" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/hydroponics/hydroponics_loading) "woy" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall/bunker, @@ -65561,15 +64974,6 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"wIl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "wIr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -65600,14 +65004,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) -"wOO" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) "wPb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -65758,16 +65154,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"xkf" = ( -/obj/structure/toilet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "xkh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, @@ -65976,7 +65362,6 @@ /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/floodgate_control) "xKx" = ( @@ -66027,20 +65412,11 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellow2" }, /area/desert_dam/building/substation/southwest) -"xRP" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "xTH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -66147,12 +65523,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ylo" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) "ylS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -69859,7 +69229,7 @@ cih cwk crl css -cBr +cst cst clw cih @@ -71481,7 +70851,7 @@ caR bNE cdG bNE -uvh +cdG bNE dTs bPA @@ -72162,7 +71532,7 @@ bsb aUS bml bml -ifB +bml bml aUS bDL @@ -72805,7 +72175,7 @@ bhu bzo bzo bBj -jre +bBj bBj bBj bFK @@ -73113,7 +72483,7 @@ bSs bTn bXD bZG -eTi +bSz bSz ccs bNE @@ -73798,7 +73168,7 @@ bqn bom bsb aWK -qGb +bqh bwO bpN bpN @@ -76389,7 +75759,7 @@ bNi bWt cfN bJU -eVo +bFx bYt bYt caY @@ -77542,7 +76912,7 @@ ccm aUu cjO aNH -jci +aTy boq aOC aTR @@ -78303,7 +77673,7 @@ doE doE dTs boP -rOa +boQ boR bNb bLS @@ -78837,7 +78207,7 @@ afe bdE bdE bdE -ngk +aWl aYS aWl baR @@ -79007,7 +78377,7 @@ doE doE doE bpY -ihT +bPE brL brL pIg @@ -79113,7 +78483,7 @@ bDe bDj bEy bCA -oHw +uRx blZ btt bJx @@ -79191,7 +78561,7 @@ bHJ bJI bJS bNw -bQx +ntt bSx bRF bRF @@ -79386,7 +78756,7 @@ bZf bZV caC cbi -oQK +cbi caC bYE cdR @@ -79649,7 +79019,7 @@ baz aNH aRu aNH -txD +aRu aNH bvL bvD @@ -79850,7 +79220,7 @@ cbh cur bXX bYE -gIA +bZf bZV caD caC @@ -82453,7 +81823,7 @@ dTs dTs dTs cQx -tVX +cQG cQQ cQQ cRG @@ -82616,7 +81986,7 @@ dTs bkU bkU bma -tLQ +bmr bmr bnm bnX @@ -83036,9 +82406,9 @@ aGA aHk aIe acf -vhA +acf kRX -vhA +acf aIe aLL aGA @@ -83378,7 +82748,7 @@ cir atr dTs adt -tuA +adz aqc bOB adt @@ -83750,7 +83120,7 @@ aYs aYr aYr aZC -aZW +qYC aZY aZY aZY @@ -84054,7 +83424,7 @@ bHc bQg bHa ciT -mar +bTe bLq dTs dTs @@ -84378,7 +83748,7 @@ rHw cJZ rHw rHw -naF +rHw rHw cKi doj @@ -84440,7 +83810,7 @@ aGz aHo aIf aKV -vpR +aJt aJt aLc aIf @@ -84510,7 +83880,7 @@ bDc cbl cbU bPx -nTn +bIb ckL ciT cqI @@ -84782,7 +84152,7 @@ dTs dTs dTs adw -sOu +ahW aYh ccI cdY @@ -84920,7 +84290,7 @@ aeM akt dTs aZC -aZW +qYC aZY aZY aZY @@ -84936,7 +84306,7 @@ bed bet beJ bfb -nFW +bfb bcU bfL apz @@ -85154,7 +84524,7 @@ aeM dTs dTs aZC -aZW +qYC aZY aZY aZY @@ -85622,7 +84992,7 @@ aeM anE aez aZC -flj +qYC bax baH baV @@ -85632,7 +85002,7 @@ byB bsE aYX bcU -dXL +bdj bdI bef bev @@ -86186,7 +85556,7 @@ acw dTs dTs adw -ifh +ahW bum bum bum @@ -86334,7 +85704,7 @@ aMO aoG ame bcU -dzY +qbC bdj beg bew @@ -88034,7 +87404,7 @@ dTs dTs dTs aEa -ljB +aCt aCy aCC aCw @@ -88151,7 +87521,7 @@ dCG dyb dAn dAn -lAb +dFL dyb dTs dTs @@ -91372,7 +90742,7 @@ dTs cPL dTA dTA -ylo +cQw cSA cPL cTM @@ -92331,7 +91701,7 @@ dUg dUo dUy dTP -efT +dWj diJ djs dbn @@ -94433,7 +93803,7 @@ dNS dck dcV dcW -jAr +dcW dfe dcY dTX @@ -94665,7 +94035,7 @@ wPb wPb wPb cXz -cNr +dcW dcW dey dcY @@ -97008,7 +96378,7 @@ cZc dde ddY dea -wnE +dfk dea dcN wRi @@ -98495,7 +97865,7 @@ ayZ azp avG axK -ltH +ayg ayg avG dTs @@ -99952,7 +99322,7 @@ dTs brh mnA bFa -jBh +bFa wTP bIB bDx @@ -100485,7 +99855,7 @@ cEo dRn dRF cGZ -iiQ +dSv cCf cCf dTs @@ -102682,7 +102052,7 @@ acu acu afG ajy -jJE +afN afN afN amk @@ -102943,7 +102313,7 @@ avG axW gNq aye -ayf +bvB avH ayL ayX @@ -103051,7 +102421,7 @@ cxD dcL cyX czF -sPL +cAo cAo cCo ctW @@ -104675,7 +104045,7 @@ cjw ckR cjx cmB -ltq +cnN cjy cpI cqA @@ -104812,7 +104182,7 @@ aCr aqC aqC avG -rDa +bvB aym ayb ayz @@ -106494,7 +105864,7 @@ aGT aGH awv aGT -fHJ +aGT aGT aEr aEm @@ -106754,7 +106124,7 @@ abk adm abU abU -iJC +abO aVE abo dEm @@ -107277,7 +106647,7 @@ cJJ cJJ cLp cHN -flq +cNc cNM cLp dTo @@ -107337,7 +106707,7 @@ dBr dZR eaA dFf -tCn +eaz eaG dBr dBr @@ -107492,7 +106862,7 @@ dPI cuf dCB dCB -eYn +dCB cvi cvi czf @@ -108263,7 +107633,7 @@ cmN cnW cmH duC -iuY +oVs dwF duC dYI @@ -108300,7 +107670,7 @@ dTs dTs dTs afP -xRP +alL aiI alI alI @@ -110176,7 +109546,7 @@ alI amo amo amo -iIB +amo alI alI ajY @@ -110577,14 +109947,14 @@ dao daN dbw dbw -tYS +uyn dao deF dqt dzC dxT dGD -mZa +cYK dDK dJi dSr @@ -112249,7 +111619,7 @@ dzw dAD dBw dBy -nnl +dDa dYy dYy dBy @@ -112945,7 +112315,7 @@ cUc clW cmH dim -gmk +dxh dyp dzz dAF @@ -113926,7 +113296,7 @@ amz anD anP anP -wIl +aoF apl aoF apl @@ -114979,7 +114349,7 @@ aXk aPc aOH aUc -jvo +aWx bgL bgJ aPL @@ -115033,7 +114403,7 @@ mTY dbN dbN dbK -xkf +dhc dhd dcw dcw @@ -115518,7 +114888,7 @@ ydw aTe aTY aUb -wOO +buz aUb aUa bLK @@ -115571,7 +114941,7 @@ anP anP anP anP -lLI +aqv aqs aoT asL @@ -115786,7 +115156,7 @@ acu acu dTs akk -oRZ +ako akK akK akK @@ -116910,7 +116280,7 @@ dkM dlS dlS dme -knm +dmP dgo cUc cCH @@ -117206,7 +116576,7 @@ amz amz apj anP -mNC +aqv aoT apI anP @@ -117598,7 +116968,7 @@ daQ dbP dbP dbP -jJn +dek dap eeM eeR @@ -117908,7 +117278,7 @@ amz anv anM anP -ujl +aqD aqd aqW anP @@ -121369,7 +120739,7 @@ dTs aVe bnw bBM -leJ +bzT bBM clA aVd diff --git a/maps/map_files/DesertDam/greenriver/newbridge.dmm b/maps/map_files/DesertDam/greenriver/newbridge.dmm index ea0c82fb1c..37803b89f4 100644 --- a/maps/map_files/DesertDam/greenriver/newbridge.dmm +++ b/maps/map_files/DesertDam/greenriver/newbridge.dmm @@ -3,47 +3,38 @@ /turf/open/asphalt{ icon_state = "tile" }, -/area/desert_dam/exterior/valley/valley_bridge) +/area/desert_dam/exterior/valley/valley_medical) "ab" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 +/turf/open/gm/river/desert/shallow_edge{ + icon_state = "shallow_edge"; + dir = 5 }, /area/desert_dam/exterior/river/riverside_east) "ac" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; - dir = 4 - }, /obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 8 + }, /turf/open/gm/river/desert/shallow_edge{ icon_state = "shallow_edge"; - dir = 8 + dir = 1 }, /area/desert_dam/exterior/river/riverside_east) "ad" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"ae" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/gm/river/desert/shallow_corner{ + icon_state = "shallow_c"; + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "af" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1{ + icon_state = "shore1"; + dir = 1 }, -/area/desert_dam/exterior/valley/valley_bridge) +/area/desert_dam/exterior/river/riverside_east) "ag" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached1" @@ -51,7 +42,7 @@ /area/desert_dam/exterior/valley/valley_bridge) "ah" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; + dir = 1; icon = 'icons/turf/overlays.dmi'; icon_state = "sand1_s" }, @@ -60,57 +51,31 @@ }, /area/desert_dam/exterior/valley/valley_bridge) "ai" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_bridge) -"aj" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"ak" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"al" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_east) -"am" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 1 +/turf/open/desert/dirt{ + icon_state = "dirt2" }, /area/desert_dam/exterior/river/riverside_east) -"an" = ( -/obj/structure/platform{ - dir = 4 +"aj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt{ + icon_state = "tile" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"ao" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/area/desert_dam/exterior/valley/valley_medical) +"ak" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8; + icon = 'icons/turf/overlays.dmi'; + icon_state = "sand1_s" }, -/area/desert_dam/exterior/valley/valley_bridge) -"ap" = ( /turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" + icon_state = "cement_sunbleached9" }, -/area/desert_dam/exterior/valley/valley_bridge) -"aq" = ( +/area/desert_dam/exterior/valley/valley_medical) +"al" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4; icon = 'icons/turf/overlays.dmi'; @@ -120,62 +85,73 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_bridge) +"an" = ( +/obj/structure/platform_decoration{ + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/desert/dirt{ + icon_state = "dirt2" + }, +/area/desert_dam/exterior/river/riverside_east) +"ap" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_east) +"aq" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) "ar" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1; + dir = 8; icon = 'icons/turf/overlays.dmi'; icon_state = "sand1_s" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached1" }, -/area/desert_dam/exterior/valley/valley_bridge) +/area/desert_dam/exterior/valley/valley_medical) "as" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" +/obj/structure/stairs{ + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached14" }, -/area/desert_dam/exterior/valley/valley_bridge) +/area/desert_dam/exterior/valley/valley_medical) "at" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "au" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached3" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) +/area/desert_dam/exterior/valley/valley_medical) "av" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 +/turf/open/desert/desert_shore/shore_corner2{ + icon_state = "shore_corner2"; + dir = 8 }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"aw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "ax" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 +/turf/open/desert/desert_shore/shore_corner2{ + icon_state = "shore_corner2"; + dir = 8 }, /area/desert_dam/exterior/river/riverside_east) "ay" = ( +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached1" + }, +/area/desert_dam/exterior/valley/valley_medical) +"az" = ( /obj/structure/platform{ dir = 1 }, @@ -185,17 +161,18 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"az" = ( -/obj/structure/platform{ - dir = 1 +"aA" = ( +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached15" }, +/area/desert_dam/exterior/valley/valley_bridge) +"aD" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"aA" = ( +"aE" = ( /obj/structure/platform{ dir = 1 }, @@ -205,101 +182,149 @@ dir = 4 }, /area/desert_dam/exterior/river/riverside_east) -"aB" = ( -/obj/structure/platform{ - dir = 1 +"aF" = ( +/obj/structure/platform_decoration{ + icon_state = "platform_deco"; + dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge{ + icon_state = "shallow_edge"; + dir = 8 + }, +/area/desert_dam/exterior/river/riverside_east) +"aG" = ( +/obj/structure/platform_decoration, /turf/open/desert/dirt{ icon_state = "dirt2" }, /area/desert_dam/exterior/river/riverside_east) -"aC" = ( +"aH" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"aI" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"aD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/covered, -/area/desert_dam/exterior/river/riverside_east) -"aE" = ( -/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2{ + icon_state = "shore_corner2"; dir = 1 }, /area/desert_dam/exterior/river/riverside_east) -"aF" = ( +"aJ" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"aK" = ( +/obj/structure/platform_decoration, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"aG" = ( +"aM" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2{ icon_state = "shore_corner2"; - dir = 8 + dir = 1 }, /area/desert_dam/exterior/river/riverside_east) -"aH" = ( +"aN" = ( +/obj/structure/platform_decoration{ + icon_state = "platform_deco"; + dir = 4 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - icon_state = "shore1"; - dir = 1 +/turf/open/gm/river/desert/shallow_edge{ + icon_state = "shallow_edge"; + dir = 9 }, /area/desert_dam/exterior/river/riverside_east) -"aI" = ( +"aO" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_bridge) +"aP" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ - dir = 8 + dir = 4 }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aJ" = ( +"aQ" = ( +/obj/structure/platform{ + dir = 4 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aK" = ( +"aR" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 +/turf/open/gm/river/desert/shallow_edge{ + icon_state = "shallow_edge"; + dir = 1 }, /area/desert_dam/exterior/river/riverside_east) -"aL" = ( +"aS" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 +/turf/open/gm/river/desert/shallow_corner{ + icon_state = "shallow_c"; + dir = 1 }, /area/desert_dam/exterior/river/riverside_east) -"aM" = ( +"aT" = ( /obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"aN" = ( +"aU" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) -"aO" = ( -/obj/effect/blocker/toxic_water/Group_2, +"aV" = ( +/obj/structure/platform_decoration{ + dir = 8; + icon_state = "platform_deco" + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aP" = ( -/obj/structure/platform_decoration, +"aW" = ( +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached4" + }, +/area/desert_dam/exterior/valley/valley_medical) +"aX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1; + icon = 'icons/turf/overlays.dmi'; + icon_state = "sand1_c" + }, +/turf/open/asphalt{ + icon_state = "tile" + }, +/area/desert_dam/exterior/valley/valley_bridge) +"aY" = ( +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached14" + }, +/area/desert_dam/exterior/valley/valley_bridge) +"aZ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_corner/covered, /area/desert_dam/exterior/river/riverside_east) -"aQ" = ( +"ba" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -307,80 +332,65 @@ }, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"aR" = ( +"bc" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aS" = ( +"bd" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aT" = ( -/obj/structure/platform, +"be" = ( +/obj/structure/platform{ + dir = 4 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) -"aU" = ( -/obj/structure/platform, +"bf" = ( /obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"bg" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_edge{ + icon_state = "shallow_edge"; + dir = 10 + }, /area/desert_dam/exterior/river/riverside_east) -"aV" = ( +"bh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, +/turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) -"aW" = ( +"bi" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"aX" = ( -/obj/structure/platform{ - dir = 4 - }, +"bj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"bk" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_east) +"bl" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) -"aY" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ba" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, +"bm" = ( /turf/open/asphalt{ icon_state = "tile" }, -/area/desert_dam/exterior/valley/valley_medical) -"bc" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bd" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"be" = ( +/area/desert_dam/exterior/valley/valley_bridge) +"bn" = ( /obj/structure/stairs{ dir = 8 }, @@ -391,31 +401,34 @@ icon_state = "cement_sunbleached2" }, /area/desert_dam/exterior/valley/valley_medical) -"bf" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"bg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" +"bo" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"bp" = ( /turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" + icon_state = "cement_sunbleached3" + }, +/area/desert_dam/exterior/valley/valley_bridge) +"bq" = ( +/turf/open/desert/dirt{ + icon_state = "dirt2" }, +/area/desert_dam/exterior/river/riverside_east) +"br" = ( +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"bi" = ( +"bs" = ( /obj/structure/platform, /turf/open/desert/dirt{ icon_state = "dirt2" }, /area/desert_dam/exterior/river/riverside_east) -"bj" = ( +"bu" = ( /obj/structure/platform_decoration{ icon_state = "platform_deco"; dir = 1 @@ -424,36 +437,17 @@ icon_state = "dirt2" }, /area/desert_dam/exterior/river/riverside_east) -"bk" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bl" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bm" = ( -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"bn" = ( +"bw" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8; icon = 'icons/turf/overlays.dmi'; icon_state = "sand1_s" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/asphalt{ + icon_state = "tile" }, -/area/desert_dam/exterior/valley/valley_medical) -"bo" = ( +/area/desert_dam/exterior/valley/valley_bridge) +"by" = ( /obj/structure/stairs{ dir = 1 }, @@ -464,7 +458,7 @@ icon_state = "cement_sunbleached3" }, /area/desert_dam/exterior/valley/valley_medical) -"bp" = ( +"bz" = ( /obj/structure/stairs{ dir = 1 }, @@ -475,214 +469,220 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/valley_medical) +"bA" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered{ + dir = 4 + }, +/area/desert_dam/exterior/river/riverside_east) (1,1,1) = {" -aa -ak -at -ad -ad +bm +aM +aR +bc +bc +bc ad -aK -aL +bg +bh +bk +bq +bs +aa +"} +(2,1,1) = {" +aI aN -aV +aS +bc +bc +bc bc +bj bi -aY -"} -(2,1,1) = {" -ab -al -am -ad -ad -ad -ad -aM -aO -aW -bc -bi -aY +bl +bq +bs +aa "} (3,1,1) = {" -ac -am -ad -ad -ad -ad -ad -aK -aL -aW +aF +aS bc -bi -aY +bc +bc +bc +bc +ad +bg +bl +bq +bs +aa "} (4,1,1) = {" -ad -ad -ad -ad -ad -ad -ad -ad -aM -aW bc -bi -aY +bc +bc +bc +bc +bc +bc +bc +bj +bl +bq +bs +aa "} (5,1,1) = {" -ad -ad -ad -ad -ad -ad -ad -ad -aM -aW +bc +bc +bc +bc +bc +bc +bc bc bj -bo +bl +bq +bu +by "} (6,1,1) = {" -ae +be +aQ +aV +bc +bc +bc +bc +bc +aK +bo an -au -ad -ad -ad -ad -ad -aP -aX -bd -bk -bp +aG +bz "} (7,1,1) = {" +bm +bm +aP +bf +bf +bf +bf +bf +ba aa +bn +as aa -av -aC -aC -aC -aC -aC -aQ -aY -be -bl -aY "} (8,1,1) = {" -af -ao -aw -aw -aw -aw -aw -aw -aR -aZ -bf -bm +bp aY +ap +ap +ap +ap +ap +ap +aU +au +aq +br +aa "} (9,1,1) = {" ag +aA +bA +aZ ap -ax -aD -aw -aw -aw -aw -aR -ba -bf -bm -aY -"} -(10,1,1) = {" -ah -aq +ap +ap +ap +aU ay -aE -aI -aI -aI -aI -aS -aY -bg -bm -aY +aq +br +aa "} -(11,1,1) = {" -ai -ar +(10,1,1) = {" +bw +al az -aF -aJ -ad -ad -ad +ac +bd +bd +bd +bd aT -aY -bg -bf -aZ +aa +aW +br +aa "} -(12,1,1) = {" -aj -as -aA -aG +(11,1,1) = {" +aO +ah +av +ab at -ad -ad -ad -aU -aY -bg -bf -bf +bc +bc +bc +aH +aa +aW +aq +au "} -(13,1,1) = {" -aj +(12,1,1) = {" +aJ +aX +aE +ax +aR +bc +bc +bc +aD aa -aB +aW +aq +aq +"} +(13,1,1) = {" +aJ +bm +ai +af +aR +bc +bc +bc aH -at -ad -ad -ad -aT -aY -bg -bf -bf +aa +aW +aq +aq "} (14,1,1) = {" -aj -aa -aB +aJ +bm +ai +af +aR +bc +bc +bc aH -at -ad -ad -ad -aT -bb -bh -bn -bn +aj +ak +ar +ar "} diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index 225fdabddc..d6de449949 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -536,11 +536,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_cargo) -"bx" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) "by" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt{ diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm index 73ae1b5ef4..0157ac69c2 100644 --- a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm +++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm @@ -55,11 +55,6 @@ icon_state = "mars_dirt_5" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"be" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) "bf" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/spawner/gibspawner/xeno, @@ -820,15 +815,6 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"oc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/desert_dam/building/bar/bar) "oo" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/mars{ @@ -1187,7 +1173,6 @@ /area/desert_dam/building/bar/bar_restroom) "vq" = ( /obj/structure/sink, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 8; icon_state = "sterile_white" @@ -2818,17 +2803,6 @@ icon_state = "mars_dirt_5" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"UQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "Vc" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -3307,7 +3281,7 @@ xT "} (5,1,1) = {" iy -be +yx Ek Tc iy @@ -3535,7 +3509,7 @@ xT "} (11,1,1) = {" hv -oc +su Sl aa hm @@ -3763,7 +3737,7 @@ pW "} (17,1,1) = {" hv -UQ +QG Ev GP Ev diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 0d4ed21934..660c219af5 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -583,14 +583,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"aoH" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "apf" = ( /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) @@ -643,10 +635,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"arl" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) "arm" = ( /obj/structure/platform{ dir = 4 @@ -1203,17 +1191,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/security/wardens) -"aFh" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "aFn" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, @@ -1277,12 +1254,6 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"aHs" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) "aHx" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, @@ -1409,7 +1380,6 @@ /obj/item/reagent_container/food/snacks/meat/human, /obj/item/reagent_container/food/snacks/meat/human, /obj/structure/machinery/light/double/blue, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "kitchen" @@ -1575,7 +1545,6 @@ /area/fiorina/oob) "aOJ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -1834,7 +1803,6 @@ pixel_y = 6 }, /obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -1915,13 +1883,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/chapel) -"aWP" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "aWR" = ( /turf/open/floor/prison{ icon_state = "floor_plate" @@ -2541,7 +2502,6 @@ "bsd" = ( /obj/structure/closet/basketball, /obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -2670,7 +2630,6 @@ /area/fiorina/maintenance) "bxV" = ( /obj/item/clothing/head/cmcap, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/fiorina/station/chapel) "bxW" = ( @@ -2699,7 +2658,6 @@ "byr" = ( /obj/structure/closet/crate/medical, /obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -3117,7 +3075,6 @@ "bLA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) "bMd" = ( @@ -3378,16 +3335,6 @@ icon_state = "darkyellow2" }, /area/fiorina/station/telecomm/lz1_tram) -"bUJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "bVh" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ @@ -3520,12 +3467,6 @@ icon_state = "cell_stripe" }, /area/fiorina/station/medbay) -"bZF" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "bZY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, @@ -3553,7 +3494,6 @@ dir = 1; pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -4123,13 +4063,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ctJ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "cua" = ( /obj/structure/sign/safety/fire_haz, /turf/open/floor/prison{ @@ -4229,7 +4162,6 @@ /area/fiorina/lz/near_lzI) "cxl" = ( /obj/structure/filingcabinet/disk, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -4297,7 +4229,6 @@ /area/fiorina/station/medbay) "czj" = ( /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 4; icon_state = "darkbrown2" @@ -4418,7 +4349,6 @@ pixel_y = 22 }, /obj/item/reagent_container/food/snacks/eat_bar, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowfull2" @@ -4558,10 +4488,6 @@ icon_state = "blue" }, /area/fiorina/station/chapel) -"cGR" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/fiorina/station/park) "cHq" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -4745,16 +4671,6 @@ /obj/item/disk, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"cOy" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) "cPq" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -4865,12 +4781,6 @@ icon_state = "yellow" }, /area/fiorina/station/disco) -"cUE" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "cVk" = ( /obj/structure/platform_decoration{ dir = 8 @@ -4942,14 +4852,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/lowsec) -"cWR" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "cWU" = ( /obj/structure/platform_decoration{ dir = 8 @@ -5021,7 +4923,6 @@ /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/dexalin/skillless, /obj/effect/spawner/random/gun/special/midchance, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) "cYT" = ( @@ -6606,13 +6507,6 @@ icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"dTv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) "dTx" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -6923,11 +6817,6 @@ icon_state = "green" }, /area/fiorina/station/transit_hub) -"efk" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) "efl" = ( /obj/structure/prop/invuln{ desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; @@ -7098,7 +6987,6 @@ /area/fiorina/station/disco) "eki" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/security/wardens) "ekH" = ( @@ -7933,7 +7821,6 @@ dir = 1; pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -8431,7 +8318,6 @@ /obj/structure/closet, /obj/item/stack/cable_coil, /obj/item/storage/pill_bottle/peridaxon/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) "fdn" = ( @@ -8873,7 +8759,6 @@ "fqZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -9139,7 +9024,6 @@ pixel_x = -10; pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "darkbrown2" @@ -9256,16 +9140,8 @@ "fCZ" = ( /obj/structure/closet/crate/medical, /obj/item/clothing/mask/cigarette/pipe, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fDo" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) "fDI" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; @@ -9625,7 +9501,6 @@ /area/fiorina/station/park) "fOo" = ( /obj/structure/closet/crate/medical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -9654,16 +9529,6 @@ icon_state = "blue" }, /area/fiorina/station/power_ring) -"fOZ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "fPu" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -10009,7 +9874,6 @@ pixel_x = 10; pixel_y = -3 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -10255,7 +10119,6 @@ /area/fiorina/tumor/ice_lab) "ghw" = ( /obj/structure/bed/chair/dropship/pilot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -10486,20 +10349,6 @@ icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"gol" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "gom" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison{ @@ -10656,13 +10505,6 @@ icon_state = "cell_stripe" }, /area/fiorina/station/power_ring) -"gvT" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "gvX" = ( /obj/structure/closet/secure_closet/security_empty, /turf/open/floor/prison{ @@ -11273,7 +11115,6 @@ req_access_txt = "100" }, /obj/effect/spawner/random/pills, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -11460,15 +11301,6 @@ icon_state = "stan3" }, /area/fiorina/tumor/ship) -"gUn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "gUx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -11567,7 +11399,6 @@ /area/fiorina/station/chapel) "gXu" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "gXD" = ( @@ -12742,7 +12573,6 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/cobweb, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/chapel_carpet{ dir = 1; icon_state = "doubleside" @@ -12757,7 +12587,6 @@ /area/fiorina/lz/near_lzI) "hHq" = ( /obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "hHv" = ( @@ -12838,7 +12667,6 @@ dir = 1; pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison, /area/fiorina/station/medbay) "hLt" = ( @@ -13412,7 +13240,6 @@ dir = 4 }, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/power_ring) "ieW" = ( @@ -13499,10 +13326,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/civres_blue) -"ihz" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) "ihA" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -13591,13 +13414,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/lowsec) -"ilb" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "ilh" = ( /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/head/helmet/marine/veteran/ua_riot, @@ -13627,14 +13443,6 @@ icon_state = "greenfull" }, /area/fiorina/station/chapel) -"imn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) @@ -13731,7 +13539,6 @@ pixel_x = 3; pixel_y = 15 }, -/obj/structure/machinery/computer/objective, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) "iqR" = ( @@ -13862,7 +13669,6 @@ "itt" = ( /obj/item/frame/rack, /obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -13883,13 +13689,6 @@ "itN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) -"itW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) "iuw" = ( /obj/item/reagent_container/food/drinks/cans/souto/cherry, /turf/open/floor/prison{ @@ -14443,14 +14242,6 @@ icon_state = "blue_plate" }, /area/fiorina/station/botany) -"iMS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) "iNw" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" @@ -14713,10 +14504,6 @@ icon_state = "darkyellowfull2" }, /area/fiorina/station/telecomm/lz1_tram) -"iVt" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison, -/area/fiorina/station/park) "iVv" = ( /obj/structure/blocker/invisible_wall, /turf/open/space, @@ -15340,7 +15127,6 @@ /area/fiorina/lz/near_lzII) "jnr" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -15585,7 +15371,6 @@ /area/fiorina/station/civres_blue) "jtv" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "darkbrown2" @@ -15656,7 +15441,6 @@ /area/fiorina/oob) "jvB" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 9; icon_state = "darkbrown2" @@ -16040,13 +15824,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"jJh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "jJF" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -16185,17 +15962,9 @@ icon_state = "platingdmg1" }, /area/fiorina/station/security) -"jLN" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "jLS" = ( /obj/structure/closet/bombcloset, /obj/effect/spawner/random/gun/rifle/midchance, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 6; icon_state = "darkyellow2" @@ -17234,12 +17003,6 @@ "kqC" = ( /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"kqF" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "kqP" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ @@ -17431,7 +17194,6 @@ opened = 1 }, /obj/item/organ/eyes, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison, /area/fiorina/station/medbay) "kwm" = ( @@ -18163,14 +17925,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/botany) -"kSP" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "kSU" = ( /turf/open/floor/prison{ dir = 4; @@ -18205,7 +17959,6 @@ /area/fiorina/tumor/civres) "kUr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -18591,17 +18344,6 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"lif" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "lik" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/pills/lowchance, @@ -18817,13 +18559,6 @@ icon_state = "whitegreen" }, /area/fiorina/oob) -"loy" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) "lpf" = ( /obj/item/storage/belt/marine, /turf/open/floor/prison, @@ -19323,7 +19058,6 @@ "lCD" = ( /obj/structure/closet/basketball, /obj/item/storage/pill_bottle/tramadol/skillless, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -19338,12 +19072,6 @@ icon_state = "greenfull" }, /area/fiorina/station/botany) -"lCZ" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "lDe" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 @@ -19984,7 +19712,6 @@ dir = 1; pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/disco) "mak" = ( @@ -20876,20 +20603,6 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/prison, /area/fiorina/station/disco) -"mAB" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "mAE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -21060,17 +20773,6 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"mHZ" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "mIk" = ( /obj/structure/bed/chair{ dir = 4 @@ -21336,7 +21038,6 @@ "mOC" = ( /obj/structure/closet/crate/medical, /obj/effect/spawner/random/toolbox, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -21565,7 +21266,6 @@ /area/fiorina/lz/near_lzI) "mUV" = ( /obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" @@ -21590,7 +21290,6 @@ "mWi" = ( /obj/structure/closet/secure_closet/engineering_materials, /obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -21987,13 +21686,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/flight_deck) -"ngG" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "nhd" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22007,7 +21699,6 @@ "nhi" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -22907,16 +22598,6 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"nKq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "nKG" = ( /obj/item/stack/sheet/metal, /turf/open/floor/almayer{ @@ -23402,12 +23083,6 @@ /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"oem" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "oex" = ( /obj/structure/bed/chair, /turf/open/floor/prison{ @@ -24176,14 +23851,6 @@ icon_state = "yellow" }, /area/fiorina/station/disco) -"ozH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "oAa" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/accessory/armband/cargo{ @@ -24285,11 +23952,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oDn" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "oDz" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison{ @@ -24537,10 +24199,6 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"oKq" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) "oKQ" = ( /obj/structure/machinery/floodlight{ name = "Yard Floodlight" @@ -24788,7 +24446,6 @@ /area/fiorina/station/central_ring) "oVn" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "oVC" = ( @@ -24921,7 +24578,6 @@ pixel_x = 7; pixel_y = 14 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "oZR" = ( @@ -25053,7 +24709,6 @@ "pcK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/cans/aspen, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) "pdf" = ( @@ -25179,11 +24834,6 @@ icon_state = "darkbrowncorners2" }, /area/fiorina/tumor/aux_engi) -"pjT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "pka" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -25923,12 +25573,6 @@ name = "pool" }, /area/fiorina/station/park) -"pHc" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "pHh" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -26230,7 +25874,6 @@ /obj/structure/filingcabinet/filingcabinet{ pixel_x = -8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" @@ -26308,7 +25951,6 @@ /obj/item/storage/bible/hefa{ pixel_y = 3 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/chapel) "pWm" = ( @@ -26573,7 +26215,6 @@ health = 80 }, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -26998,7 +26639,6 @@ /area/fiorina/station/disco) "qqM" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -27721,7 +27361,6 @@ /area/fiorina/station/power_ring) "qNm" = ( /obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -27846,19 +27485,9 @@ icon_state = "darkbrown2" }, /area/fiorina/tumor/aux_engi) -"qQj" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) "qQl" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"qQt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) "qQA" = ( /obj/item/reagent_container/food/drinks/bottle/holywater{ desc = "A flask of the holy HEFA grenade oil."; @@ -28366,7 +27995,6 @@ "rfG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical/green, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -28485,18 +28113,11 @@ pixel_x = 10; pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 4; icon_state = "darkbrown2" }, /area/fiorina/maintenance) -"rkh" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) "rkr" = ( /turf/open/floor/prison{ dir = 5; @@ -28518,7 +28139,6 @@ "rkQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -28951,13 +28571,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rzR" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) "rAa" = ( /obj/item/pamphlet/skill/powerloader, /obj/structure/surface/table/reinforced/prison, @@ -28976,11 +28589,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"rAm" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) "rAt" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison{ @@ -29474,7 +29082,6 @@ "rON" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/park) "rPh" = ( @@ -29542,7 +29149,6 @@ "rQd" = ( /obj/structure/closet, /obj/item/stack/cable_coil, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/maintenance) "rQm" = ( @@ -29657,10 +29263,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"rUA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) "rUL" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/prison{ @@ -29928,7 +29530,6 @@ "sdg" = ( /obj/item/implanter/compressed, /obj/structure/safe, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -30027,7 +29628,6 @@ pixel_y = 3 }, /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) "shq" = ( @@ -30074,7 +29674,6 @@ /obj/item/tool/soap/syndie, /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/gun/special, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 10; icon_state = "kitchen" @@ -30560,7 +30159,6 @@ pixel_x = 6; pixel_y = 12 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -30702,7 +30300,6 @@ pixel_x = -6; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -31028,7 +30625,6 @@ /obj/item/pamphlet/engineer, /obj/structure/closet, /obj/item/handcuffs, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -31708,7 +31304,6 @@ "tpt" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/spawner/random/goggles, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) "tpO" = ( @@ -32637,13 +32232,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tPP" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "tPQ" = ( /turf/open/floor/prison{ icon_state = "platingdmg1" @@ -32654,7 +32242,6 @@ dir = 1; pixel_y = 24 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ dir = 8; icon_state = "darkbrown2" @@ -32810,7 +32397,6 @@ icon_state = "abed" }, /obj/item/explosive/grenade/incendiary/molotov, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "yellow" @@ -33496,10 +33082,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"usq" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) "usz" = ( /turf/open/floor/prison{ icon_state = "yellowfull" @@ -33515,13 +33097,6 @@ icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"utf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "uts" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, @@ -33666,14 +33241,6 @@ name = "pool" }, /area/fiorina/station/park) -"uxO" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "uxY" = ( /turf/open/floor/prison{ dir = 6; @@ -33868,7 +33435,6 @@ /area/fiorina/lz/near_lzII) "uFc" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -34047,10 +33613,6 @@ icon_state = "darkbrowncorners2" }, /area/fiorina/maintenance) -"uJX" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) "uKh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/secure_data{ @@ -34077,17 +33639,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uLH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "uLJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, @@ -34331,10 +33882,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"uVv" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) "uVD" = ( /turf/open/floor/corsat{ icon_state = "squares" @@ -34562,7 +34109,6 @@ /area/fiorina/station/central_ring) "vbl" = ( /obj/structure/closet/bombcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -34828,7 +34374,6 @@ "vjl" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "vjq" = ( @@ -34871,7 +34416,6 @@ /obj/effect/spawner/random/gun/special/midchance, /obj/item/clothing/suit/armor/det_suit, /obj/item/attachable/magnetic_harness, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "vky" = ( @@ -34923,18 +34467,6 @@ icon_state = "darkyellow2" }, /area/fiorina/station/telecomm/lz1_tram) -"vlX" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "vmj" = ( /obj/effect/landmark/nightmare{ insert_tag = "podholder" @@ -35106,7 +34638,6 @@ "vrM" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -35140,7 +34671,6 @@ /area/fiorina/station/civres_blue) "vsg" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ dir = 10; icon_state = "darkbrown2" @@ -35290,10 +34820,6 @@ icon_state = "darkbrown2" }, /area/fiorina/station/park) -"vwt" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) "vwM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 @@ -35575,11 +35101,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vFn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "vFr" = ( /obj/structure/prop/structure_lattice{ health = 300; @@ -36611,14 +36132,6 @@ icon_state = "blue" }, /area/fiorina/station/chapel) -"woI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) "wpf" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison{ @@ -36789,12 +36302,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"wvH" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) "wvS" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -36847,14 +36354,6 @@ /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"wxo" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "wxX" = ( /obj/structure/machinery/computer/cameras{ dir = 8; @@ -37189,7 +36688,6 @@ "wHE" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -37259,7 +36757,6 @@ /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) "wJJ" = ( @@ -37647,17 +37144,6 @@ icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) -"wVI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "wVK" = ( /turf/open/floor/prison{ dir = 4; @@ -37913,13 +37399,6 @@ icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) -"xfw" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "xfA" = ( /obj/structure/bed/chair{ dir = 8 @@ -38034,12 +37513,6 @@ icon_state = "darkyellowcorners2" }, /area/fiorina/station/telecomm/lz1_cargo) -"xkj" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "xkv" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_tram) @@ -38248,13 +37721,6 @@ icon_state = "blue" }, /area/fiorina/station/power_ring) -"xoI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "xoK" = ( /obj/structure/closet, /obj/item/handcuffs, @@ -38270,7 +37736,6 @@ /area/fiorina/tumor/civres) "xpB" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -38465,7 +37930,6 @@ /area/fiorina/tumor/servers) "xvH" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -38507,7 +37971,6 @@ /area/fiorina/tumor/fiberbush) "xwy" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/medbay) "xwA" = ( @@ -38526,7 +37989,6 @@ /area/fiorina/station/civres_blue) "xxd" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 6; icon_state = "darkbrown2" @@ -38639,7 +38101,6 @@ /obj/structure/closet/wardrobe/orange, /obj/item/explosive/mine/pmc, /obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "yellowfull" }, @@ -39016,14 +38477,6 @@ icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"xMN" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "xMR" = ( /turf/open/floor/prison{ dir = 1; @@ -39055,7 +38508,6 @@ "xNf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -39282,23 +38734,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"xVm" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"xVv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "xVD" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" @@ -39516,7 +38951,6 @@ /area/fiorina/station/park) "ybY" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) "ycd" = ( @@ -41202,7 +40636,7 @@ eVO eVO seW oxA -ihz +fiU tZW pGH jXk @@ -43542,7 +42976,7 @@ lso kbT kbT kbT -rUA +kbT qPb olo gwH @@ -44120,7 +43554,7 @@ wJa hDx hDx pwL -oKq +dXG hDx diP qty @@ -44560,7 +43994,7 @@ naW ecF jSD lKd -fDo +lKd pCN xHV xHV @@ -45036,7 +44470,7 @@ kbT tQn sVP gCX -bZF +aKW rGq hjP euT @@ -45212,7 +44646,7 @@ qPb qPb qPb qPb -itW +qPb gwH gwH gwH @@ -47072,7 +46506,7 @@ dXG dXG dXG dXG -vwt +dXG xCo yis dIo @@ -48568,7 +48002,7 @@ dCu fBP eaL dIo -gol +moJ fBP dCu qty @@ -48780,7 +48214,7 @@ dIo fBP gaZ dIo -mAB +moJ hLt dIo mii @@ -48791,7 +48225,7 @@ hDx xHV dIo uPg -ctJ +fBP hDx dIo dXG @@ -49699,7 +49133,7 @@ qNm myg aKW aKW -gvT +qNm eev rZP rGq @@ -49882,7 +49316,7 @@ jVH lwG aKW aKW -oem +aKW aKW aKW aKW @@ -52701,7 +52135,7 @@ vwc vwc fuA qNv -iVt +uGM jgu hMg irB @@ -52758,7 +52192,7 @@ agi agi agi aWV -jJh +cBU njx njx njx @@ -53862,7 +53296,7 @@ rja rja tqN jre -woI +wmp bMr xxD xxD @@ -54329,7 +53763,7 @@ sJT sJT sJT sJT -ngG +eyM vbl pER jlk @@ -55003,7 +54437,7 @@ uGT itN itN itN -xoI +gbU uGM cdD qyi @@ -55450,7 +54884,7 @@ lzJ wbI eFa wbI -cGR +wbI uGT bQM uGT @@ -56011,7 +55445,7 @@ tDQ xxD xxD bMr -woI +wmp wFU bQM bQM @@ -56152,7 +55586,7 @@ fGb nBV nyl vco -xfw +wVK quy chS uTX @@ -57957,7 +57391,7 @@ jGA jGA xFB ipd -xMN +tyO cLR wRZ dMv @@ -57984,7 +57418,7 @@ qUo fAv vtl cdD -lCZ +ajK ivz jot fAv @@ -58169,7 +57603,7 @@ jGA jGA xFB ipd -xMN +tyO cLR tII vxV @@ -59396,7 +58830,7 @@ dbq qQA uAX clP -efk +puw aXk dbq dje @@ -59474,7 +58908,7 @@ uGM wFE uGM uGM -uJX +uGM qUe uGM uGM @@ -59655,7 +59089,7 @@ djd vxV wcX ipd -wxo +tyO cLR vxV gyi @@ -59679,7 +59113,7 @@ hbo jJS occ qBB -ilb +cdD vyA rwu wbI @@ -60241,7 +59675,7 @@ bis bis bis dbq -wvH +clP xNg rFu daA @@ -60633,7 +60067,7 @@ rja eXp nAr gbD -nKq +rVZ jIm eXp nIf @@ -61454,7 +60888,7 @@ gEF eQD lwK vco -usq +njx uFX lwK lwK @@ -61482,7 +60916,7 @@ gma gma gma qDi -xkj +gma gma gma gma @@ -61769,7 +61203,7 @@ ohI wRZ ohI wRZ -ozH +eqq ipd cLR vha @@ -63936,7 +63370,7 @@ afk afk iWq tPN -uxO +jtv cEl cEl dtc @@ -64116,7 +63550,7 @@ kul elq vxV wrR -qQt +nNJ cME dkb uGY @@ -64148,7 +63582,7 @@ afk afk iWq tPN -cWR +jtv dKX gfo aXM @@ -64420,7 +63854,7 @@ xLi eXd mNj olG -aoH +pBn xLi jmM xjK @@ -65064,7 +64498,7 @@ tOr ezJ xLi hBI -iMS +qTr xLi jpS azZ @@ -65413,7 +64847,7 @@ aWk vZX nbb gXu -rAm +gXu qkN vZX vZX @@ -65625,7 +65059,7 @@ pRG vZX vZX wHq -qQj +gXu qkN vZX vZX @@ -67222,7 +66656,7 @@ fPZ fPZ kuS hVI -kSP +adH fPZ hVI mJy @@ -68662,7 +68096,7 @@ nTD pdm pPQ qVD -cOy +kWJ xjK tOr vpB @@ -70044,7 +69478,7 @@ fWL nyD gkm oZR -xVm +sRV tJM nqN ltb @@ -71301,7 +70735,7 @@ pHu sHH sHH vRA -rkh +xQE xBv isK xGt @@ -72257,7 +71691,7 @@ aOd phz xjK app -bUJ +lfS mcT fkP dNF @@ -72705,7 +72139,7 @@ upt lIG avs wwr -dTv +avs mvl vBQ idE @@ -74213,7 +73647,7 @@ cKa mOr wTO cKa -vlX +bGQ roY iZV hEs @@ -76106,7 +75540,7 @@ cKa aaK soQ cKa -tPP +aaK soQ cKa cVX @@ -76370,7 +75804,7 @@ kqC kqC kqC tVV -arl +vRA oFI eGY eOf @@ -76380,7 +75814,7 @@ mcc vei kqC cCq -fOZ +pDV kqC cCq pDV @@ -76557,7 +75991,7 @@ bQM uwk vbt fyi -aHs +mIE cKa pwN lps @@ -77018,7 +76452,7 @@ kqC bux bZu kqC -aFh +bux bZu wzE bQM @@ -77058,7 +76492,7 @@ tyQ sTV tdA oYM -cUE +oYM lAS oYM myt @@ -77660,7 +77094,7 @@ usz duF koy gsL -pHc +mcc mcc qOq mcc @@ -77677,7 +77111,7 @@ lAS tlp mxQ xCa -pjT +fgU wul mxQ qFg @@ -78230,7 +77664,7 @@ ldm usA cKa ldm -xVv +usA cKa xMR roY @@ -80131,7 +79565,7 @@ xMR roY iZV hqD -mHZ +ldm usA hqD ldm @@ -80549,7 +79983,7 @@ cAW jmG cKa ocJ -wVI +rsE cKa xMR roY @@ -80859,7 +80293,7 @@ mxQ mxQ mxQ tMz -lif +tMz mxQ uod lAS @@ -82073,7 +81507,7 @@ dgB dgB iOG jLs -aWP +jLs oUg dpt jLs @@ -82336,7 +81770,7 @@ ycN oYM nVq xUz -rzR +xUz byn jjg aqW @@ -82684,7 +82118,7 @@ iZV roY roY aIp -jLN +aIp vNq vNq vNq @@ -83183,7 +82617,7 @@ ufX fEY bzO oYM -kqF +oYM oYM oYM oYM @@ -83415,7 +82849,7 @@ rev dEF xrn jXC -gUn +hab vCv lAS ehg @@ -83808,7 +83242,7 @@ hll oYM dCb mxQ -uLH +cbx oYM oYM oYM @@ -83971,7 +83405,7 @@ aap oUg gDz jLs -aWP +jLs wQn vyU dpt @@ -84450,7 +83884,7 @@ lAS uTk oYM lLU -kqF +oYM kfA kfA oYM @@ -84637,7 +84071,7 @@ kcP fGM vpk bhX -uVv +aRG vAi fpl aRG @@ -86137,7 +85571,7 @@ tUs tlQ tUs tUs -vFn +oXS mxQ iyf mxQ @@ -86596,7 +86030,7 @@ xVR ipJ kwy bzO -loy +lQd txS jrn bzO @@ -87635,7 +87069,7 @@ nVq rev oYM mKy -utf +whR rzt bQM rzt @@ -92494,7 +91928,7 @@ iWq bQM scM laP -imn +laP scM xdE xdE @@ -92679,7 +92113,7 @@ xeO xeO xeO dIp -oDn +ybY xeO wqM hKI diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm index b2a660473a..bd48ecbe77 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm @@ -133,7 +133,6 @@ /area/template_noop) "kA" = ( /obj/structure/bed/chair/dropship/pilot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -215,10 +214,6 @@ /obj/structure/machinery/power/apc, /turf/open/floor/almayer, /area/template_noop) -"od" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) "oh" = ( /turf/open/floor/plating/prison, /area/template_noop) @@ -788,7 +783,7 @@ nF nF Yj qI -od +oH bC xS UJ diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm index f9a3768698..0f952b6fde 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm @@ -21,12 +21,6 @@ "e" = ( /turf/closed/wall/prison, /area/template_noop) -"g" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) "i" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -303,7 +297,7 @@ i y "} (8,1,1) = {" -g +y F V d diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm index bd9ec72717..fa4a9b8b7b 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm @@ -28,7 +28,6 @@ /area/template_noop) "s" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/template_noop) "t" = ( diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm index c9f19cbe91..7ce5cfc3f3 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm @@ -394,7 +394,6 @@ "QF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm index 61fd7320e1..0043ae9f1c 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm @@ -207,7 +207,6 @@ pixel_x = 7; pixel_y = 14 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, /area/template_noop) "nx" = ( diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm index 22c8cb543d..72b524015b 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -824,7 +824,6 @@ "Fl" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/template_noop) "Fo" = ( @@ -877,7 +876,6 @@ /turf/open/floor/plating/prison, /area/template_noop) "Gp" = ( -/obj/effect/landmark/objective_landmark/medium, /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ pixel_x = -7 diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm index 8df7c92de4..6e7f60a9bd 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm @@ -271,17 +271,6 @@ icon_state = "whitepurple" }, /area/template_noop) -"sa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/template_noop) "tc" = ( /obj/structure/bed{ icon_state = "abed" @@ -431,17 +420,6 @@ icon_state = "whitepurple" }, /area/template_noop) -"Bl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/template_noop) "Bx" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/prison{ @@ -738,13 +716,6 @@ icon_state = "darkpurplefull2" }, /area/template_noop) -"Qc" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/template_noop) "Qn" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ @@ -810,17 +781,6 @@ icon_state = "whitepurple" }, /area/template_noop) -"Wo" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/template_noop) "Yw" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -886,7 +846,7 @@ LM Fc nw LM -Qc +Fc nw LM Fc @@ -1090,7 +1050,7 @@ rb yv LM Hw -Bl +yv LM "} (13,1,1) = {" @@ -1263,7 +1223,7 @@ DV aa Hp LM -Wo +Hw yv LM Hw @@ -1297,7 +1257,7 @@ LM bz LM DE -sa +JQ LM DV NI diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm index 408bccfc7e..fde4404791 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm @@ -45,7 +45,6 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -173,7 +172,6 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /obj/item/pamphlet/engineer, /turf/open/floor/prison{ icon_state = "floor_plate" @@ -186,7 +184,6 @@ pixel_x = 10; pixel_y = -3 }, -/obj/effect/landmark/objective_landmark/medium, /obj/item/storage/backpack/marine/engineerpack/satchel, /turf/open/floor/prison{ dir = 4; diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm index 101db37289..ca4c904c6b 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm @@ -115,7 +115,6 @@ /area/template_noop) "m" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index f5e2f597ef..d777aaf2e7 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -1107,7 +1107,6 @@ dir = 1; pixel_y = 9 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 1; icon_state = "wred" @@ -1143,13 +1142,6 @@ icon_state = "yellow" }, /area/shiva/interior/colony/research_hab) -"aeA" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, -/area/shiva/interior/colony/central) "aeC" = ( /obj/structure/closet/firecloset, /turf/open/floor/shiva{ @@ -1350,7 +1342,6 @@ "afE" = ( /obj/structure/surface/table, /obj/item/stack/nanopaste, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "wred" @@ -1377,7 +1368,6 @@ }, /area/shiva/interior/colony/medseceng) "afN" = ( -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 4; icon_state = "purplefull" @@ -1671,7 +1661,6 @@ /area/shiva/interior/colony/medseceng) "ahq" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) "aht" = ( @@ -2070,7 +2059,6 @@ /area/shiva/interior/colony/medseceng) "ajg" = ( /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 6; icon_state = "yellow" @@ -2576,7 +2564,6 @@ "amn" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "wredfull" }, @@ -2638,7 +2625,6 @@ /obj/structure/surface/table, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/handful/shotgun/incendiary, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) "amJ" = ( @@ -3558,7 +3544,6 @@ pixel_x = -2; pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 6; icon_state = "multi_tiles" @@ -3731,7 +3716,6 @@ pixel_x = -3; pixel_y = -13 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "multi_tiles" @@ -3863,7 +3847,6 @@ /area/shiva/interior/valley_huts/disposals) "ava" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "yellow" }, @@ -4406,7 +4389,6 @@ /area/shiva/interior/garage) "azH" = ( /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "yellow" @@ -4824,7 +4806,6 @@ "aDE" = ( /obj/structure/closet/crate, /obj/item/tool/shovel/snow, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -5006,18 +4987,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"aFr" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "aFs" = ( /obj/structure/machinery/door_control{ id = "st_18"; @@ -5481,7 +5450,6 @@ /area/shiva/exterior/cp_lz2) "aLO" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/bar) "aLZ" = ( @@ -5638,7 +5606,6 @@ "aMT" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/chunk, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -5769,18 +5736,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aOb" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "aOg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, @@ -6040,7 +5995,6 @@ dir = 8; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "purplefull" }, @@ -6295,7 +6249,6 @@ /area/shiva/interior/colony/research_hab) "aTT" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1 }, @@ -6308,9 +6261,6 @@ /area/shiva/exterior/cp_lz2) "aTZ" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) "aUc" = ( @@ -7070,7 +7020,6 @@ icon_state = "jensenshades"; name = "augmented shades" }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) "bcE" = ( @@ -7176,7 +7125,6 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/shiva/interior/bar) "bfy" = ( @@ -7202,14 +7150,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"bfR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) "bga" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -7421,10 +7361,6 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"bsS" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/interior/plastic/alt, -/area/shiva/interior/warehouse) "bsV" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard/cp_bar) @@ -7795,7 +7731,6 @@ /obj/structure/filingcabinet{ pixel_x = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -8046,12 +7981,6 @@ icon_state = "red" }, /area/shiva/interior/colony/central) -"bZZ" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "caS" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) @@ -8304,13 +8233,6 @@ "crF" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/research_hab) -"crN" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "cse" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -8425,7 +8347,6 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) "cAW" = ( -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/shiva/interior/valley_huts/disposals) "cAZ" = ( @@ -9256,12 +9177,6 @@ /obj/item/reagent_container/food/drinks/bottle/rum, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"dun" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "duv" = ( /turf/open/floor/shiva{ icon_state = "snow_mat" @@ -9853,20 +9768,6 @@ icon_state = "radiator_tile" }, /area/shiva/interior/colony/botany) -"emq" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) "emy" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/shiva{ @@ -9998,11 +9899,6 @@ icon_state = "multi_tiles" }, /area/shiva/interior/colony/research_hab) -"euZ" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/shiva/interior/colony/central) "evY" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil, @@ -10302,7 +10198,6 @@ "eOK" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/redpyjamas, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/botany) "eOM" = ( @@ -10403,7 +10298,6 @@ /area/shiva/exterior/junkyard) "eVX" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1; icon_state = "snow_mat" @@ -10512,7 +10406,6 @@ /area/shiva/interior/colony/botany) "fcq" = ( /obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -10582,11 +10475,6 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"fgK" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/shiva/interior/colony/research_hab) "fhd" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -10713,11 +10601,6 @@ icon_state = "bluefull" }, /area/shiva/interior/colony/s_admin) -"fmi" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "fnw" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -10801,11 +10684,6 @@ /obj/item/book/manual/security_space_law, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"fuj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) "fun" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -10915,7 +10793,6 @@ /area/shiva/interior/colony/botany) "fBg" = ( /obj/structure/closet/wardrobe/green, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "greenfull" }, @@ -10974,7 +10851,6 @@ "fFd" = ( /obj/structure/surface/table, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "bluefull" }, @@ -11205,7 +11081,6 @@ "fPA" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) "fPD" = ( @@ -11392,13 +11267,6 @@ icon_state = "kitchen" }, /area/shiva/interior/colony/central) -"gcF" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -11518,7 +11386,6 @@ /area/shiva/interior/colony/research_hab) "ghU" = ( /obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -11690,7 +11557,6 @@ name = "mail bins"; pixel_y = 14 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -11814,7 +11680,6 @@ /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/central) "gzM" = ( @@ -11976,7 +11841,6 @@ dir = 8; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -12092,11 +11956,6 @@ "gPg" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) -"gPN" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "gPZ" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/shiva{ @@ -12182,14 +12041,12 @@ /area/shiva/interior/caves/s_lz2) "gSb" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1 }, /area/shiva/interior/colony/n_admin) "gSG" = ( /obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "wred" @@ -12205,20 +12062,6 @@ /obj/structure/machinery/gibber, /turf/open/floor/prison, /area/shiva/interior/bar) -"gTv" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) "gTU" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/shiva{ @@ -12236,13 +12079,6 @@ dir = 1 }, /area/shiva/interior/colony/botany) -"gVJ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "gWk" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -12297,13 +12133,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hab" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, @@ -12438,7 +12267,6 @@ /obj/structure/filingcabinet/filingcabinet{ name = "mail bins" }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -12702,12 +12530,6 @@ "hzJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/lz1_valley) -"hzZ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "hAS" = ( /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) @@ -12856,7 +12678,6 @@ /area/shiva/interior/oob/dev_room) "hFJ" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -13140,13 +12961,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"hVr" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) "hVs" = ( /obj/structure/surface/table, /obj/item/evidencebag{ @@ -13362,10 +13176,6 @@ icon_state = "floor3" }, /area/shiva/interior/colony/botany) -"igJ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating, -/area/shiva/interior/caves/research_caves) "igN" = ( /turf/open/floor/shiva{ dir = 4; @@ -13594,7 +13404,6 @@ /area/shiva/interior/colony/central) "itG" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 10; icon_state = "red" @@ -13692,13 +13501,6 @@ icon_state = "red" }, /area/shiva/interior/colony/medseceng) -"ivS" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/n_admin) "iwn" = ( /obj/structure/surface/table, /obj/item/storage/box/bodybags, @@ -13712,7 +13514,6 @@ /area/shiva/interior/colony/central) "ixo" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/central) "ixC" = ( @@ -13797,19 +13598,6 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"iCr" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "iCs" = ( /obj/item/storage/firstaid/adv, /turf/open/floor/shiva{ @@ -14072,13 +13860,6 @@ icon_state = "yellow" }, /area/shiva/interior/colony/medseceng) -"iRa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "iRh" = ( /obj/structure/surface/table, /obj/item/tool/surgery/scalpel, @@ -14342,7 +14123,6 @@ "jcv" = ( /obj/structure/surface/table, /obj/item/clothing/suit/armor/hos, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -14464,28 +14244,6 @@ "jmW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jnc" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"jny" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) "jnW" = ( /obj/structure/machinery/disposal, /turf/open/floor/shiva{ @@ -14550,7 +14308,6 @@ "jqT" = ( /obj/structure/closet/firecloset, /obj/item/explosive/grenade/high_explosive/pmc, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -14576,7 +14333,6 @@ /area/shiva/exterior/cp_lz2) "jsn" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/central) "jsA" = ( @@ -14847,7 +14603,6 @@ /area/shiva/exterior/lz2_fortress) "jLn" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "yellowfull" }, @@ -14928,7 +14683,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/shiva/interior/bar) "jQe" = ( @@ -15091,7 +14845,6 @@ dir = 1; flipped = 1 }, -/obj/structure/machinery/computer/objective, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -15155,7 +14908,6 @@ "kce" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "yellowfull" }, @@ -15295,12 +15047,6 @@ /obj/item/device/flashlight, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"khB" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "kiv" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva{ @@ -15312,7 +15058,6 @@ pixel_y = 24 }, /obj/structure/closet/secure_closet/detective, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) "kiF" = ( @@ -15429,7 +15174,6 @@ pixel_x = -24 }, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -15577,12 +15321,6 @@ icon_state = "multi_tiles" }, /area/shiva/interior/colony/central) -"kxv" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) "kxx" = ( /turf/open/floor/shiva{ dir = 1; @@ -15631,7 +15369,6 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 1 }, @@ -15847,12 +15584,6 @@ icon_state = "wred" }, /area/shiva/interior/colony/medseceng) -"kJN" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "kJQ" = ( /obj/item/lightstick/red/variant, /turf/open/auto_turf/snow/layer1, @@ -15996,13 +15727,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"kQJ" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) "kQW" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -16104,9 +15828,6 @@ /area/shiva/exterior/cp_s_research) "kVe" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) "kVs" = ( @@ -16263,18 +15984,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ldd" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "leg" = ( /obj/effect/spider/cocoon{ icon_state = "cocoon_large1" @@ -16427,7 +16136,6 @@ /area/shiva/interior/caves/s_lz2) "lnY" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "yellowfull" }, @@ -16547,7 +16255,6 @@ /area/shiva/exterior/cp_lz2) "lsk" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -16576,13 +16283,6 @@ icon_state = "floor3" }, /area/shiva/exterior/lz2_fortress) -"lvq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "lvW" = ( /obj/structure/machinery/computer/cameras{ dir = 8 @@ -16901,7 +16601,6 @@ /area/shiva/interior/colony/medseceng) "lOO" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 4; icon_state = "yellow" @@ -16910,7 +16609,6 @@ "lOT" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 10; icon_state = "red" @@ -16961,7 +16659,6 @@ /area/shiva/exterior/cp_lz2) "lRI" = ( /obj/structure/largecrate/random/mini/med, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -17019,7 +16716,6 @@ /area/shiva/exterior/lz1_valley) "lUQ" = ( /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1; icon_state = "yellow" @@ -17350,14 +17046,6 @@ icon_state = "yellow" }, /area/shiva/interior/colony/research_hab) -"miW" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "mjV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, @@ -17429,7 +17117,6 @@ "mqd" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "bluefull" }, @@ -17481,11 +17168,6 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"msu" = ( -/obj/structure/closet/bodybag, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/bar) "msN" = ( /obj/structure/bedsheetbin{ pixel_y = 9 @@ -18064,13 +17746,6 @@ icon_state = "redfull" }, /area/shiva/interior/colony/medseceng) -"mWA" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "mWE" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green, @@ -18361,7 +18036,6 @@ /area/shiva/exterior/cp_lz2) "nnG" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 6; icon_state = "red" @@ -18416,12 +18090,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nrB" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) "nrN" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, @@ -18604,7 +18272,6 @@ /area/shiva/interior/colony/central) "nCx" = ( /obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/shiva/interior/colony/central) "nCK" = ( @@ -18695,7 +18362,6 @@ "nIB" = ( /obj/structure/surface/table, /obj/item/device/taperecorder, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -18979,7 +18645,6 @@ /area/shiva/interior/warehouse/caves) "nZM" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "bluefull" }, @@ -19110,7 +18775,6 @@ /area/shiva/exterior/junkyard) "ofK" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1 }, @@ -19623,7 +19287,6 @@ "oKM" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/assistantformal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/botany) "oLr" = ( @@ -19961,7 +19624,6 @@ /area/shiva/exterior/cp_colony_grounds) "pkp" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) "pkK" = ( @@ -19990,13 +19652,8 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"pmj" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/colony/central) "pmz" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -20092,7 +19749,6 @@ /area/shiva/exterior/cp_colony_grounds) "pth" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -20151,7 +19807,6 @@ /area/shiva/interior/colony/s_admin) "puT" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -20316,7 +19971,6 @@ /area/shiva/exterior/lz2_fortress) "pBy" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 1 }, @@ -20480,7 +20134,6 @@ /area/shiva/exterior/cp_lz2) "pHz" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 10; icon_state = "red" @@ -20581,7 +20234,6 @@ pixel_y = 8 }, /obj/item/trash/cigbutt, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/shiva/interior/bar) "pLf" = ( @@ -20777,12 +20429,6 @@ icon_state = "floor3" }, /area/shiva/interior/lz2_habs) -"pTG" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) "pUp" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, @@ -20842,7 +20488,6 @@ pixel_y = 7 }, /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) "pWw" = ( @@ -21082,7 +20727,6 @@ flipped = 1 }, /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -21131,7 +20775,6 @@ name = "mail bins"; pixel_y = 14 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -21155,7 +20798,6 @@ /obj/item/folder/black{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) "qof" = ( @@ -21312,7 +20954,6 @@ /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 9; icon_state = "wred" @@ -21472,7 +21113,6 @@ /area/shiva/interior/colony/medseceng) "qGN" = ( /obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) "qIr" = ( @@ -22085,19 +21725,11 @@ dir = 8; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "wred" }, /area/shiva/interior/colony/medseceng) -"rsa" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "rti" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue{ @@ -22457,14 +22089,12 @@ "rRO" = ( /obj/structure/machinery/light/double, /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "red" }, /area/shiva/interior/colony/medseceng) "rRP" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "rSr" = ( @@ -22523,12 +22153,6 @@ icon_state = "yellowfull" }, /area/shiva/interior/lz2_habs) -"rVF" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "rVK" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -22612,11 +22236,6 @@ "rZt" = ( /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"rZC" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "rZD" = ( /turf/open/floor/shiva{ dir = 8; @@ -22995,12 +22614,6 @@ icon_state = "floor3" }, /area/shiva/interior/colony/s_admin) -"sxm" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) "sxp" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva{ @@ -23160,13 +22773,11 @@ /obj/item/folder/black{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) "sFR" = ( /obj/structure/closet, /obj/item/newspaper, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -23183,7 +22794,6 @@ "sGI" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/clothing/head/cakehat, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -23225,7 +22835,6 @@ dir = 4; health = 80 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -23381,7 +22990,6 @@ /area/shiva/exterior/junkyard/fortbiceps) "sQt" = ( /obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -23515,7 +23123,6 @@ "taq" = ( /obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -23769,7 +23376,6 @@ pixel_x = -3; pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -23953,18 +23559,11 @@ /area/shiva/interior/colony/central) "txA" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 6; icon_state = "red" }, /area/shiva/interior/colony/medseceng) -"txO" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/caves/cp_camp) "txS" = ( /turf/open/floor/shiva{ icon_state = "multi_tiles" @@ -24380,20 +23979,6 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"tRq" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) "tRN" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -25081,14 +24666,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard) -"uzs" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "uzu" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_s_research) @@ -25115,7 +24692,6 @@ /area/shiva/exterior/lz1_valley) "uAq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -25210,13 +24786,6 @@ "uGq" = ( /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"uGw" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "uHa" = ( /obj/structure/morgue, /obj/structure/machinery/light/double{ @@ -25317,7 +24886,6 @@ pixel_x = -14; pixel_y = 14 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -25372,7 +24940,6 @@ req_access_txt = "100" }, /obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "wred" @@ -25713,7 +25280,6 @@ /area/shiva/interior/colony/medseceng) "vdb" = ( /obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -25796,13 +25362,6 @@ icon_state = "multi_tiles" }, /area/shiva/interior/colony/central) -"vhp" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "vhG" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher/mini, @@ -26059,7 +25618,6 @@ "vxW" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -26091,7 +25649,6 @@ dir = 4 }, /obj/structure/largecrate/random/mini/med, -/obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) "vAp" = ( @@ -26414,13 +25971,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vTj" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "vUC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer4, @@ -26441,12 +25991,6 @@ "vUR" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz2_fortress) -"vVq" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shiva/interior/aerodrome) "vWf" = ( /obj/item/handcuffs, /turf/open/floor/shiva{ @@ -26995,21 +26539,12 @@ icon_state = "red" }, /area/shiva/interior/colony/medseceng) -"wHx" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/close, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) "wHA" = ( /turf/open/floor/shiva{ dir = 4; icon_state = "blue" }, /area/shiva/interior/colony/n_admin) -"wHZ" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) "wIC" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/auto_turf/ice/layer1, @@ -27255,7 +26790,6 @@ pixel_x = 6; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -27355,7 +26889,6 @@ "xde" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bluepyjamas, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) "xdT" = ( @@ -27608,7 +27141,6 @@ /area/shiva/exterior/lz1_valley) "xwL" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -27645,7 +27177,6 @@ dir = 1; pixel_y = -24 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "red" }, @@ -27678,13 +27209,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"xBo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "xCj" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -27818,7 +27342,6 @@ dir = 1; pixel_y = 24 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -28026,7 +27549,6 @@ /area/shiva/exterior/cp_colony_grounds) "xXV" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1 }, @@ -29208,7 +28730,7 @@ puZ puZ aac aPg -rVF +cce odz uwv xQJ @@ -30780,7 +30302,7 @@ fwv goj bXo chU -kQJ +vKu vKu wnK vKu @@ -32153,7 +31675,7 @@ iuK iuK iuK iuK -sxm +iuK uFA dkP tEr @@ -32871,7 +32393,7 @@ dRb lSU rHO rHO -fgK +rRP lSU chU gAV @@ -35151,7 +34673,7 @@ uKo rZt wjK goj -vTj +chU goj asz agm @@ -36439,10 +35961,10 @@ nOB rMI rMI asz -tRq +kbZ wdy dTU -bZZ +wnK dTU twc fNE @@ -36479,7 +36001,7 @@ amu amu amu fXX -igJ +fXX fXX amu puZ @@ -36601,11 +36123,11 @@ wnK dTU pkK asz -emq +kbZ chU kbZ chU -gTv +kbZ chU fNE uvU @@ -36765,9 +36287,9 @@ wnK asz kbZ chU -gTv +kbZ sHf -tRq +kbZ chU ogu rZt @@ -36925,7 +36447,7 @@ rMI rMI rMI asz -emq +kbZ wnK dTU wnK @@ -37472,7 +36994,7 @@ qZa kLB qhJ qZa -uGw +pth anc kXx eni @@ -37597,7 +37119,7 @@ jrg jrg jrg amu -igJ +fXX fXX fXX fXX @@ -38275,7 +37797,7 @@ puZ anc kbl xQJ -nrB +xQJ nTC odz bsM @@ -39036,7 +38558,7 @@ rZt rZt rZt fNE -mWA +ril rZt iEF etV @@ -41610,7 +41132,7 @@ hPp hPp quO pwT -hVr +mnZ sud ggC hPp @@ -41932,7 +41454,7 @@ ntJ wMh bni jOi -txO +jOi jOi jOi jOi @@ -43994,7 +43516,7 @@ gwq mkK mqt rBH -fmi +wZW fiK rBH gsK @@ -44326,7 +43848,7 @@ hKR vNJ nur hul -kxv +vmy pSM rBH rBH @@ -44515,7 +44037,7 @@ uhL uhL uhL gIq -jny +owD nOd rAH xgc @@ -44669,7 +44191,7 @@ nGv hyu rbo rbM -iCr +wZY hyu nOd uhL @@ -45118,7 +44640,7 @@ hLf azZ sCc uzP -ivS +xwL xwL hLf stN @@ -45131,7 +44653,7 @@ rBH mIt vmy hWK -gVJ +sjo rZD hKR vNJ @@ -45810,7 +45332,7 @@ uhL hyu hyu tWn -kJN +hyu hyu cvs vxb @@ -46376,7 +45898,7 @@ ffj axz aiE aAg -pTG +ndR jqY jqY ndR @@ -46908,7 +46430,7 @@ mdx stN tFk fiK -khB +pNy rBH eOK fiK @@ -47072,7 +46594,7 @@ rBH gKQ wZW rBH -rZC +wZW gKQ rBH qng @@ -47556,7 +47078,7 @@ stN rBH gKQ fiK -rZC +wZW rBH wZW fiK @@ -47752,8 +47274,8 @@ fkF aOW akX uhL -jny -jny +owD +owD aOW raQ cZk @@ -47854,7 +47376,7 @@ jvT djn djn doc -aeA +sQt axz pMs bsp @@ -47882,7 +47404,7 @@ ecZ ecZ uzU rBH -dun +pNy fiK fiK tFk @@ -48312,7 +47834,7 @@ puZ "} (125,1,1) = {" aad -hab +aAi qrz jqY jqY @@ -48421,7 +47943,7 @@ aRm qXS xOb tnu -msu +kPZ aKK xCA eCg @@ -49143,7 +48665,7 @@ xha xha veS axz -ldd +kuY xha xha vyM @@ -49312,7 +48834,7 @@ xha xha vBg ndR -gcF +fcq axz sqy bsp @@ -49471,7 +48993,7 @@ mru rZP hTk nCx -gPN +nCx vBg ndR sII @@ -49608,7 +49130,7 @@ puZ "} (133,1,1) = {" aad -vhp +aAi qrz jqY jqY @@ -50907,7 +50429,7 @@ aad ajD apF apG -pmj +apG apG jFy nfe @@ -51259,7 +50781,7 @@ axz hJH axz jsn -euZ +jsn tfd hin axz @@ -51714,7 +51236,7 @@ puZ "} (146,1,1) = {" aad -lvq +ajN qrz jqY jqY @@ -52376,7 +51898,7 @@ xbz uYR oGg acT -rsa +vXh vXh vXh mEV @@ -52639,7 +52161,7 @@ aYf baY bdk aWS -jnc +bYO aWQ dbH uyI @@ -53149,7 +52671,7 @@ rdS axJ axJ axJ -bsS +hAS pKf iYC huz @@ -53599,7 +53121,7 @@ aKQ bKV bKV omu -aFr +bMK uji uji pvv @@ -53762,7 +53284,7 @@ bKV bKV aNg bKV -aOb +bMK uji snX fRg @@ -55705,7 +55227,7 @@ oQl uKZ hsw aNp -bfR +afd oYH oYH pvv @@ -55765,7 +55287,7 @@ puZ (171,1,1) = {" acH amX -wHZ +ajO acT afx agh @@ -56278,7 +55800,7 @@ ceS uXQ acT ylO -hzZ +agh jxJ acT acT @@ -56416,7 +55938,7 @@ ajO ajO ajO acT -miW +amh all axG acT @@ -56522,7 +56044,7 @@ pvv aTi aUy aVL -vVq +aWS aVL aVL aVL @@ -56552,7 +56074,7 @@ eSN akF alS aMW -wHx +ans dQq axJ axJ @@ -57745,7 +57267,7 @@ agh uXQ acT bzZ -uzs +ajK ajK uXQ aDn @@ -59510,10 +59032,10 @@ eAZ eAZ eAZ acT -crN -iRa -rsa -crN +vXh +vXh +vXh +vXh acT eAZ qDT @@ -59844,7 +59366,7 @@ eAZ acT bVz pkp -fuj +pkp acT bjb ljM @@ -60466,7 +59988,7 @@ bhS dbQ amP dbQ -xBo +kRI bhS amP sHc @@ -60987,7 +60509,7 @@ uZf hms xEw acT -wHZ +ajO amP amP amP diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm index 74d967c95b..0e871fb3ab 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm @@ -1,8 +1,22 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/shiva/exterior/lz2_fortress) +"c" = ( +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/exterior/lz2_fortress) +"r" = ( +/obj/structure/largecrate/random/mini/ammo, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/exterior/lz2_fortress) +"s" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"b" = ( +"C" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, @@ -20,116 +34,102 @@ icon_state = "multi_tiles" }, /area/shiva/exterior/lz2_fortress) -"g" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/exterior/lz2_fortress) -"h" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"i" = ( +"E" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) +"K" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) -"m" = ( +"S" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_lz2) +"U" = ( /turf/open/floor/shiva{ icon_state = "radiator_tile" }, /area/shiva/exterior/lz2_fortress) -"t" = ( -/obj/structure/largecrate/random/mini/ammo, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"P" = ( -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_lz2) -"S" = ( +"V" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"V" = ( -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) (1,1,1) = {" -h -h -h -h -h -h -t -i -i -a -a +c +c +c +c +c +c +r +K +K +s +s "} (2,1,1) = {" -b -b -m -m -b -b -i -i -i -S -a +C +C +U +U +C +C +K +K +K +V +s "} (3,1,1) = {" -g -g -g -g -g -g -g -g -g -g -g +a +a +a +a +a +a +a +a +a +a +a "} (4,1,1) = {" -g -g -g -g -g -g -g -g -g -g -g +a +a +a +a +a +a +a +a +a +a +a "} (5,1,1) = {" -P -P -g -g +S +S a a -V -g -g +s +s +E a a +s +s "} (6,1,1) = {" -P -P -g -g -V -V +S +S a -g -g a -V +E +E +s +a +a +s +E "} diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm index 60525207b4..6634138dc5 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm @@ -128,12 +128,6 @@ "L" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"M" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "N" = ( /obj/structure/foamed_metal, /turf/open/floor/shiva{ @@ -185,7 +179,7 @@ f W "} (3,1,1) = {" -M +z I Q N diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm index d4111051f7..b7262c596b 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm @@ -1,131 +1,126 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"b" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 2; - id = "sslz_shutters"; - name = "\improper Landing Zone Shutters" - }, -/turf/open/floor/plating/plating_catwalk/shiva, +/turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"d" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +"f" = ( +/obj/structure/machinery/door_control{ + id = "slz_shutters"; + pixel_x = -7 }, +/turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"e" = ( +"i" = ( /obj/structure/machinery/door_control{ - id = "sslz_shutters"; + id = "slz_shutters"; pixel_x = -22 }, /turf/open/floor/shiva{ - icon_state = "radiator_tile" + dir = 1 }, /area/shiva/exterior/lz2_fortress) -"f" = ( +"j" = ( /turf/open/floor/shiva{ dir = 1 }, /area/shiva/exterior/lz2_fortress) -"g" = ( -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_lz2) "l" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "multi_tiles" + }, +/area/shiva/exterior/lz2_fortress) +"m" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva{ + dir = 1 + }, /area/shiva/exterior/lz2_fortress) "o" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) +"q" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; pixel_x = -22 }, /turf/open/floor/shiva{ - dir = 1 + icon_state = "radiator_tile" }, /area/shiva/exterior/lz2_fortress) "r" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) -"t" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; dir = 2; - id = "slz_shutters"; + id = "sslz_shutters"; name = "\improper Landing Zone Shutters" }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"v" = ( +"t" = ( +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/exterior/lz2_fortress) +"w" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_x = -13; pixel_y = 25 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) -"x" = ( /obj/structure/machinery/door_control{ id = "slz_shutters"; pixel_x = -22 }, /turf/open/floor/shiva{ - dir = 1 + icon_state = "radiator_tile" }, /area/shiva/exterior/lz2_fortress) -"y" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 +"z" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 2; + id = "slz_shutters"; + name = "\improper Landing Zone Shutters" }, +/turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) "B" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) "F" = ( -/obj/structure/machinery/door_control{ - id = "sslz_shutters"; - pixel_x = 25 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"L" = ( -/obj/structure/machinery/door_control{ - id = "slz_shutters"; - pixel_x = -7 - }, -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/exterior/lz2_fortress) -"S" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_x = -13; pixel_y = 25 }, -/obj/structure/machinery/door_control{ - id = "slz_shutters"; - pixel_x = -22 +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) +"I" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) +"J" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, /turf/open/floor/shiva{ icon_state = "radiator_tile" }, /area/shiva/exterior/lz2_fortress) -"U" = ( +"Q" = ( +/obj/structure/machinery/door_control{ + id = "sslz_shutters"; + pixel_x = -22 + }, /turf/open/floor/shiva{ - icon_state = "floor3" + dir = 1 }, /area/shiva/exterior/lz2_fortress) -"W" = ( +"T" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; pixel_x = 25 @@ -134,97 +129,96 @@ icon_state = "radiator_tile" }, /area/shiva/exterior/lz2_fortress) -"X" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer1, +"V" = ( +/turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"Y" = ( -/obj/structure/foamed_metal, +"Z" = ( +/obj/structure/machinery/door_control{ + id = "sslz_shutters"; + pixel_x = 25 + }, /turf/open/floor/shiva{ dir = 1 }, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" -f -l -l -l -l -l -l -r +j +a +a +a +a +a +a +I "} (2,1,1) = {" -f -l -l -l -l -l -l -r +j +a +a +a +a +a +a +I "} (3,1,1) = {" -f -S -t -x -o -b -e -v +j +w +z +i +Q +r +q +F "} (4,1,1) = {" -U -B t -f -f -b +l +z +j +j +r +l B -a "} (5,1,1) = {" -U -B t -f -f -b +l +z +j +j +r +l B -a "} (6,1,1) = {" -f -d -t -f -F -b -W -X +j +J +z +j +Z +r +T +o "} (7,1,1) = {" -y -L -l -L -l -l -l -g +j +f +a +f +a +a +a +V "} (8,1,1) = {" -Y -l -l -l -l -l -l -g +m +a +a +a +a +a +a +V "} diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index a79ef352f9..fdc0fdea32 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -103,7 +103,6 @@ /area/kutjevo/interior/power) "akS" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "alh" = ( @@ -438,16 +437,8 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) "aAq" = ( -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/auto_doc) -"aCn" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -32 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/runoff_bridge) "aCo" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/kutjevo/multi_tiles{ @@ -653,7 +644,6 @@ /obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) "aUF" = ( @@ -718,10 +708,6 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_dunes) -"bbL" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/power) "bbW" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/foremans_office) @@ -818,7 +804,6 @@ pixel_x = -8; pixel_y = 16 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) "biF" = ( @@ -944,7 +929,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) "brL" = ( @@ -993,10 +977,6 @@ dir = 1 }, /area/kutjevo/interior/complex/med/auto_doc) -"buG" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med) "bvT" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -1197,10 +1177,6 @@ "bHA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"bIL" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/med_rec) "bIW" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -1382,7 +1358,6 @@ /area/kutjevo/exterior/complex_border/med_rec) "bVs" = ( /obj/structure/largecrate/supply/medicine/medkits, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) "bVB" = ( @@ -1415,11 +1390,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"bXc" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) "bXh" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -1443,18 +1413,6 @@ dir = 8 }, /area/kutjevo/interior/construction) -"cau" = ( -/obj/item/bodybag/tarp/reactive, -/obj/item/bodybag/tarp/reactive, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) -"cbf" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "cbg" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) @@ -1642,14 +1600,12 @@ pixel_x = -7; pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/orange/inner_corner{ dir = 4 }, /area/kutjevo/interior/power_pt2_electric_boogaloo) "cqk" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 4 }, @@ -1920,7 +1876,6 @@ /area/kutjevo/interior/construction) "cIE" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power) "cIZ" = ( @@ -1970,15 +1925,6 @@ icon_state = "mars_cave_7" }, /area/kutjevo/exterior/lz_dunes) -"cMc" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "cMv" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -1994,7 +1940,6 @@ dir = 4 }, /obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/multi_tiles{ dir = 10 }, @@ -2061,10 +2006,6 @@ icon = 'icons/turf/floors/desert_water_toxic.dmi' }, /area/kutjevo/interior/oob) -"cQz" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/green/tile, -/area/kutjevo/interior/complex/botany/east) "cQH" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -2155,7 +2096,6 @@ /obj/structure/closet/firecloset/full{ desc = "It's a storage unit for fire-fighting supplies. The sequence -4-- is carved into the corner." }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) "cUI" = ( @@ -2238,7 +2178,6 @@ pixel_y = 22; range = 15 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan/grey_edge{ dir = 1 }, @@ -2275,10 +2214,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"dck" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/complex/botany) "dcA" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2483,7 +2418,6 @@ }, /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 10 }, @@ -2607,10 +2541,6 @@ dir = 9 }, /area/kutjevo/exterior/runoff_river) -"dyB" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/operating) "dyU" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2760,7 +2690,6 @@ /obj/structure/surface/table/reinforced/prison{ indestructible = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) "dHF" = ( @@ -2891,10 +2820,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"dQY" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power) "dRj" = ( /turf/open/floor/kutjevo/multi_tiles{ dir = 4 @@ -2940,7 +2865,6 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) "dTM" = ( @@ -2978,7 +2902,6 @@ dir = 8 }, /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "dWB" = ( @@ -3097,12 +3020,6 @@ }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"efr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) "efF" = ( /obj/structure/bed/chair{ dir = 8 @@ -3264,7 +3181,6 @@ dir = 1 }, /obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) "eoc" = ( @@ -3425,7 +3341,6 @@ pixel_y = 4 }, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) "ewL" = ( @@ -3508,7 +3423,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) "eAL" = ( @@ -3586,13 +3500,8 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"eGL" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) "eHX" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz1_south) @@ -3825,7 +3734,6 @@ /area/kutjevo/interior/construction) "eUJ" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/Northwest_Colony) "eVv" = ( @@ -3979,10 +3887,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"ffu" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power) "ffv" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, @@ -4071,12 +3975,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"flp" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "flP" = ( /obj/structure/blocker/invisible_wall, /obj/structure/blocker/invisible_wall, @@ -4246,7 +4144,6 @@ /area/kutjevo/exterior/complex_border/med_rec) "fyZ" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/grey_edge{ dir = 1 }, @@ -4287,13 +4184,6 @@ dir = 1 }, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"fEz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) "fFH" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -4312,7 +4202,6 @@ /obj/structure/surface/rack, /obj/item/book/manual/nuclear, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 8 }, @@ -4529,12 +4418,6 @@ dir = 4 }, /area/kutjevo/interior/colony_South/power2) -"fTR" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/reagent_container/glass/watertank, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) "fTV" = ( /obj/structure/machinery/computer/emails{ dir = 4 @@ -4785,7 +4668,6 @@ /area/kutjevo/exterior/complex_border/botany_medical_cave) "gpm" = ( /obj/structure/bed/roller, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan/edge{ dir = 1 }, @@ -4814,7 +4696,6 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner{ dir = 1 }, @@ -4978,7 +4859,6 @@ /area/kutjevo/exterior/construction) "gCh" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 6 }, @@ -5061,7 +4941,6 @@ "gHp" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/foremans_office) "gJB" = ( @@ -5193,7 +5072,6 @@ /area/kutjevo/interior/complex/med) "gTo" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) "gTy" = ( @@ -5219,10 +5097,6 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) -"gUs" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) "gUQ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -5331,7 +5205,6 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "hbY" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) "hds" = ( @@ -5388,7 +5261,6 @@ layer = 3.1 }, /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles{ dir = 10 }, @@ -5408,19 +5280,11 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) -"hma" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/construction) "hmR" = ( /turf/open/floor/kutjevo/colors/orange/edge{ dir = 9 }, /area/kutjevo/interior/foremans_office) -"hnm" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/construction) "hnq" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -5506,7 +5370,6 @@ "hsi" = ( /obj/structure/closet, /obj/item/clothing/under/kutjevo, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "hst" = ( @@ -5596,7 +5459,6 @@ /obj/item/clothing/suit/armor/vest/security, /obj/item/clothing/suit/armor/vest/security, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) "hzG" = ( @@ -5673,7 +5535,6 @@ pixel_x = 7; pixel_y = 16 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/grey_edge{ dir = 1 }, @@ -5692,11 +5553,6 @@ /obj/structure/surface/table/almayer, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"hDW" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/construction) "hEC" = ( /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, @@ -5971,7 +5827,6 @@ /obj/item/clothing/glasses/thermal/syndi{ icon_state = "kutjevo_goggles" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) "iem" = ( @@ -6198,7 +6053,6 @@ pixel_x = -8; pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) "iCh" = ( @@ -6224,7 +6078,6 @@ /area/kutjevo/exterior/complex_border/botany_medical_cave) "iCw" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_inner_edge{ dir = 8 }, @@ -6410,11 +6263,6 @@ dir = 9 }, /area/kutjevo/exterior/lz_river) -"iTc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "iTg" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6435,10 +6283,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"iUr" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_central/mine_elevator) "iUD" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -6536,7 +6380,6 @@ "jav" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/item/ammo_box/magazine/nailgun, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) "jaY" = ( @@ -6558,7 +6401,6 @@ /area/kutjevo/interior/complex/med/auto_doc) "jcl" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge{ dir = 9 }, @@ -6591,11 +6433,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) -"jfG" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/colors/orange/edge, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "jfH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stairs/perspective/kutjevo{ @@ -6740,7 +6577,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) "jpl" = ( @@ -6787,11 +6623,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"jrJ" = ( -/obj/item/stack/sheet/wood, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "jrY" = ( /obj/structure/inflatable/popped, /turf/open/floor/kutjevo/tan, @@ -6812,7 +6643,6 @@ /area/kutjevo/interior/power/comms) "jtD" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) "jtJ" = ( @@ -6918,10 +6748,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"jxT" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/complex/botany) "jyq" = ( /obj/structure/bed/chair{ dir = 1 @@ -6951,16 +6777,10 @@ /area/kutjevo/interior/power_pt2_electric_boogaloo) "jzQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner{ dir = 4 }, /area/kutjevo/interior/complex/med) -"jBe" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "jBJ" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -7342,7 +7162,6 @@ "klu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "klE" = ( @@ -7543,7 +7362,6 @@ /area/kutjevo/interior/complex/Northwest_Dorms) "kwR" = ( /obj/structure/bed/sofa/south/grey/left, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) "kxt" = ( @@ -7621,7 +7439,6 @@ /area/kutjevo/interior/complex/med) "kBm" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) "kBz" = ( @@ -7762,7 +7579,6 @@ /area/kutjevo/interior/power/comms) "kNn" = ( /obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "kNq" = ( @@ -7844,7 +7660,6 @@ /area/kutjevo/exterior/complex_border/botany_medical_cave) "kSh" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 1 }, @@ -7907,7 +7722,6 @@ "kVX" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/orange/edge{ dir = 4 }, @@ -7915,7 +7729,6 @@ "kWd" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange/edge{ dir = 1 }, @@ -8167,11 +7980,6 @@ "lpJ" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) -"lpN" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Dorms) "lqG" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -8255,9 +8063,6 @@ pixel_x = 5; pixel_y = -4 }, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) "lxN" = ( @@ -8307,7 +8112,6 @@ /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) "lBm" = ( @@ -8488,7 +8292,6 @@ }, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) "lNG" = ( @@ -8648,7 +8451,6 @@ /area/kutjevo/exterior/lz_dunes) "mbc" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_edge{ dir = 1 }, @@ -8709,7 +8511,6 @@ /area/kutjevo/interior/complex/botany/east) "mej" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "meF" = ( @@ -8768,7 +8569,6 @@ dir = 4 }, /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 6 }, @@ -8897,7 +8697,6 @@ /area/kutjevo/interior/construction) "msF" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/multi_tiles{ dir = 1 }, @@ -8964,7 +8763,6 @@ /area/kutjevo/interior/colony_South/power2) "mvM" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles{ dir = 6 }, @@ -9283,7 +9081,6 @@ /area/kutjevo/interior/complex/botany/east_tech) "mMF" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 8 }, @@ -9622,7 +9419,6 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) "nnz" = ( -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange/edge{ dir = 8 }, @@ -9648,10 +9444,6 @@ "nrk" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/scrubland) -"nrt" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/construction) "nrD" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -9733,10 +9525,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"nvG" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/botany) "nwz" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, @@ -10302,17 +10090,6 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) -"ogf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "ogo" = ( /turf/open/floor/kutjevo/colors/cyan/edge{ dir = 1 @@ -10438,10 +10215,6 @@ "opQ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"oqd" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/complex/botany) "oqg" = ( /turf/open/desert/desert_shore/shore_edge1{ dir = 4 @@ -10547,7 +10320,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge{ dir = 1 }, @@ -10566,7 +10338,6 @@ "ozq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 1 }, @@ -10605,7 +10376,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) "oDC" = ( @@ -10628,13 +10398,6 @@ dir = 8 }, /area/kutjevo/interior/oob/dev_room) -"oFz" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/botany/east) "oFX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras, @@ -10675,7 +10438,6 @@ /area/kutjevo/interior/colony_central/mine_elevator) "oIV" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles{ dir = 1 }, @@ -10683,7 +10445,6 @@ "oJj" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/smg/nailgun, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) "oJE" = ( @@ -10723,7 +10484,6 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) "oMW" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/purple/edge{ dir = 5 }, @@ -10938,9 +10698,6 @@ /obj/structure/surface/table/almayer, /obj/item/clothing/mask/cigarette, /obj/item/ashtray/bronze, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) "peQ" = ( @@ -11037,12 +10794,6 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"piI" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/ammo_box/magazine/nailgun, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east_tech) "piW" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/colors, @@ -11195,7 +10946,6 @@ /area/kutjevo/exterior/runoff_dunes) "psu" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "psz" = ( @@ -11205,7 +10955,6 @@ "ptd" = ( /obj/structure/surface/table/almayer, /obj/item/bodybag/tarp/reactive, -/obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) "ptz" = ( @@ -11440,10 +11189,6 @@ dir = 4 }, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"pHv" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "pHR" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, @@ -11560,7 +11305,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) "pNW" = ( @@ -11579,7 +11323,6 @@ /area/kutjevo/interior/complex/med) "pPn" = ( /obj/item/stack/sheet/wood, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 1 }, @@ -11765,7 +11508,6 @@ /obj/structure/barricade/handrail/kutjevo{ layer = 3.1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 4 }, @@ -11885,7 +11627,6 @@ pixel_x = -24; start_charge = 0 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) "qpZ" = ( @@ -12019,7 +11760,6 @@ /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_river) "qAk" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 1 }, @@ -12130,11 +11870,6 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"qHT" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "qIi" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/spawner/random/tool, @@ -12558,12 +12293,6 @@ icon_state = "mars_cave_10" }, /area/kutjevo/exterior/scrubland) -"rnA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirtgrassborder2{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_park) "rnM" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, @@ -12974,7 +12703,6 @@ dir = 4 }, /obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) "rUi" = ( @@ -13003,7 +12731,6 @@ /area/kutjevo/exterior/runoff_river) "rVa" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) "rWK" = ( @@ -13308,7 +13035,6 @@ /area/kutjevo/interior/construction) "spd" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 6 }, @@ -13325,7 +13051,6 @@ /area/kutjevo/exterior/runoff_bridge) "sre" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange/edge{ dir = 8 }, @@ -13412,7 +13137,6 @@ dir = 4 }, /obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/operating) "syM" = ( @@ -13581,7 +13305,6 @@ /obj/structure/closet, /obj/item/clothing/head/helmet/marine/veteran/kutjevo, /obj/item/clothing/glasses/kutjevo, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/grey_edge{ dir = 1 }, @@ -13833,7 +13556,6 @@ /area/kutjevo/exterior/runoff_bridge) "sZO" = ( /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) "sZY" = ( @@ -13851,13 +13573,6 @@ "tax" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_dunes) -"tdC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tiles, -/area/kutjevo/interior/complex/med/operating) "tdG" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/green, @@ -14177,7 +13892,6 @@ /area/kutjevo/interior/colony_S_East) "tAQ" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) "tAX" = ( @@ -14246,7 +13960,6 @@ "tEV" = ( /obj/structure/surface/rack, /obj/item/book/manual/engineering_particle_accelerator, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles{ dir = 10 }, @@ -14317,7 +14030,6 @@ /obj/item/clothing/accessory/storage/black_vest, /obj/item/clothing/accessory/holobadge, /obj/item/storage/belt/marine, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) "tIz" = ( @@ -14653,7 +14365,6 @@ pixel_x = -8; pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/grey, /area/kutjevo/interior/complex/med) "ujo" = ( @@ -14845,7 +14556,6 @@ /area/kutjevo/interior/complex/botany) "uvj" = ( /obj/structure/largecrate/supply/medicine/iv, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) "uwD" = ( @@ -14958,11 +14668,6 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"uDm" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/construction) "uDP" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1, @@ -14976,7 +14681,6 @@ "uEk" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/surgery, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan/inner_corner{ dir = 8 }, @@ -14992,7 +14696,6 @@ pixel_x = 8; pixel_y = 17 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge{ dir = 1 }, @@ -15131,7 +14834,6 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) "uNI" = ( @@ -15202,7 +14904,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) "uQf" = ( @@ -15250,10 +14951,6 @@ dir = 6 }, /area/kutjevo/interior/oob) -"uTa" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/green/tile, -/area/kutjevo/interior/complex/botany) "uTj" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/tan/grey_edge, @@ -15499,7 +15196,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "vhQ" = ( @@ -15558,7 +15254,6 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "vlt" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) "vmB" = ( @@ -15658,7 +15353,6 @@ /area/kutjevo/exterior/telecomm/lz2_south) "vuj" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) "vuo" = ( @@ -15882,32 +15576,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"vKp" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/Northwest_Dorms) "vKQ" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -15977,10 +15645,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"vOC" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "vOO" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib4" @@ -16135,11 +15799,6 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wbE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "wbV" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/runoff_dunes) @@ -16253,7 +15912,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles{ dir = 10 }, @@ -16274,10 +15932,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"wnt" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "wnw" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/green, @@ -16342,7 +15996,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/orange/inner_corner{ dir = 1 }, @@ -16448,7 +16101,6 @@ pixel_x = 8; pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) "wyp" = ( @@ -16552,7 +16204,6 @@ /area/kutjevo/exterior/Northwest_Colony) "wFa" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 8; icon_state = "multi_tiles" @@ -16644,7 +16295,6 @@ dir = 4 }, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) "wQZ" = ( @@ -16766,12 +16416,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"xaB" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "xaI" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/plastic, @@ -17063,10 +16707,6 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) -"xyF" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/construction) "xyY" = ( /obj/structure/machinery/light/small, /turf/open/floor/kutjevo/multi_tiles{ @@ -17227,7 +16867,6 @@ /obj/item/tool/minihoe, /obj/structure/surface/rack, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) "xRh" = ( @@ -17482,7 +17121,6 @@ pixel_x = 8; pixel_y = 17 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) "yir" = ( @@ -17497,7 +17135,6 @@ dir = 8 }, /obj/structure/largecrate/supply/medicine/blood, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) "yjF" = ( @@ -17554,7 +17191,6 @@ }, /obj/item/storage/pill_bottle/tramadol/skillless, /obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "multi_tiles" @@ -19633,7 +19269,7 @@ swq opQ haz ksN -jfG +mej sWF dxF dxF @@ -23136,7 +22772,7 @@ aUF uAJ iZi nZK -iTc +lVt pmo gFt onC @@ -24075,7 +23711,7 @@ bHo hQj hQj hQj -pHv +hQj hQj aFr tEK @@ -24288,7 +23924,7 @@ pma wEU sVF iiy -eGL +sVF bGg sVF xBm @@ -24775,10 +24411,10 @@ upp jnV egL sjE -vKp +nLR jnV ufp -lpN +iXh vYF cWc yhm @@ -24862,7 +24498,7 @@ tlN tlN scu lkP -ffu +wqD adX tlN tlN @@ -25362,7 +24998,7 @@ gzv ezX mZE tXm -dQY +wqD tXm lac tlN @@ -25396,7 +25032,7 @@ uGd fkP vin pBV -vOC +hQj xzY cvm kdY @@ -25734,7 +25370,7 @@ hQj pyp xjY xjY -bbL +xjY xjY voy rwj @@ -26737,11 +26373,11 @@ bja xXe hQj hQj -wnt +hQj mDl eNK dzD -pHv +hQj avX kbL cvm @@ -27248,7 +26884,7 @@ hQj qTN mGb nHV -qHT +iLF hQj pBV ptd @@ -27574,7 +27210,7 @@ yas szF spd yas -cMc +szF rvt xzY hQj @@ -32201,7 +31837,7 @@ lHs jkJ nAo qgW -fTR +jkJ lHs plf gyx @@ -32489,7 +32125,7 @@ wLp uHP uHP gTo -bXc +sSF rpB iYo iYo @@ -32540,7 +32176,7 @@ vDS vDS vDS scY -jrJ +lfm vDS lHs ofs @@ -32710,7 +32346,7 @@ tyW rNG uhV qhw -uTa +nOG eTc tKY sbX @@ -32973,7 +32609,7 @@ dxF dxF kkH gkU -tdC +rHQ lSe tha ogo @@ -33145,7 +32781,7 @@ dGx kkH nyp gRi -dyB +cbg bKl xgl xgl @@ -33669,7 +33305,7 @@ imG ghk sVy oVX -buG +snr xZd jEo snr @@ -33716,7 +33352,7 @@ scY wnw lry sZz -aCn +jiz cqX fyD fyD @@ -33878,10 +33514,10 @@ vDS kDS cAt cAt -oqd +cAt lfm gEe -flp +arG fyD arG cqX @@ -34193,7 +33829,7 @@ hVg nLg juO lHs -cau +ulo ulo lHs jrk @@ -34881,7 +34517,7 @@ ycN hHi tRp pSs -nvG +pSs tRp kDS nOG @@ -34889,7 +34525,7 @@ nOG klN oeb fyD -xaB +oeb wwq fYI tIh @@ -34976,7 +34612,7 @@ mxB mxB wYp uIQ -rnA +tUm wYp epG crT @@ -35532,7 +35168,7 @@ cAt cAt vDS tRp -gUs +pSs tDP lOK lHs @@ -36026,7 +35662,7 @@ vDS dif iWH qcE -dck +cAt cAt piW piW @@ -36539,7 +36175,7 @@ xkk hCu pjF hCu -cQz +vHL vHL dbg hHi @@ -36550,7 +36186,7 @@ sVx gKG hHi bPV -jxT +cAt iub fyD fyD @@ -37206,7 +36842,7 @@ kHm jSi jSi oQc -oFz +kSh vHL hCu mbS @@ -38006,7 +37642,7 @@ nAc msK msK msK -bIL +msK uAz dHF rES @@ -38162,7 +37798,7 @@ oUP vfr gew wAo -uDm +gew sCG twn vfr @@ -38991,7 +38627,7 @@ fyF sbz oUP sBh -xyF +fyF wLt alo vfr @@ -39162,7 +38798,7 @@ iNt nSP qPc vfr -hma +euj tgZ vaG soQ @@ -39213,7 +38849,7 @@ dip dip hMu hMu -piI +jav jav jav hMu @@ -39331,7 +38967,7 @@ qaI mDz euj euj -hma +euj euj euj euj @@ -39339,7 +38975,7 @@ sCG twn vFc uzq -bIL +msK gld gld gld @@ -39667,7 +39303,7 @@ oMW euj bKm vMf -fEz +vMf euj txH qaI @@ -41221,7 +40857,7 @@ aoJ tnx vDR fTk -ogf +eVO aoJ tnx slP @@ -42367,7 +42003,7 @@ qaI cUm oIq cUm -hnm +cUm wAp xWK bKH @@ -42391,7 +42027,7 @@ cFT eOt mBG qGx -efr +slx qGx fVA eaB @@ -42531,7 +42167,7 @@ rvA dQv xWK qaI -nrt +cUm wLt cUm lxc @@ -42865,7 +42501,7 @@ rvA lPR oNG qaI -wbE +hrR fyF fyF lCE @@ -43363,7 +42999,7 @@ euj sBk tAQ pih -jBe +tAQ cUm fyF fyF @@ -43528,7 +43164,7 @@ qaI eUA euj sBk -cbf +tAQ pih cUq wSU @@ -44367,7 +44003,7 @@ uhD ifE ubm pih -hDW +mbR qDu eZT lxc @@ -51395,7 +51031,7 @@ pGc pGc quW quW -iUr +quW cyc jhS jhS diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index d000153afd..d2f32f14c4 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -465,7 +465,6 @@ /area/lv522/atmos/sewer) "amC" = ( /obj/structure/bed/roller, -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 4 @@ -1272,13 +1271,6 @@ icon_state = "w-y2" }, /area/lv522/oob/w_y_vault) -"aJS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "aJT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -1471,7 +1463,6 @@ "aQe" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -2985,7 +2976,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -3002,7 +2992,6 @@ pixel_y = 14 }, /obj/item/device/binoculars, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "bHa" = ( @@ -3134,7 +3123,6 @@ /area/lv522/indoors/a_block/kitchen) "bJy" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -3556,7 +3544,6 @@ /obj/item/storage/box/drinkingglasses{ pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) "bTF" = ( @@ -5102,13 +5089,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cFW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "cGd" = ( /turf/open/floor/corsat{ dir = 5; @@ -5512,23 +5492,11 @@ /obj/item/stack/sheet/mineral/diamond{ amount = 2 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "floor_marked" }, /area/lv522/atmos/cargo_intake) -"cMt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) "cMv" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/machinery/light{ @@ -6398,7 +6366,6 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "floor_marked" @@ -6407,7 +6374,6 @@ "ddq" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, -/obj/effect/landmark/objective_landmark/close, /obj/item/stack/sheet/cardboard/full_stack, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -7411,7 +7377,6 @@ /area/lv522/atmos/north_command_centre) "dwX" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -8475,7 +8440,6 @@ }, /area/lv522/oob) "dTs" = ( -/obj/effect/landmark/objective_landmark/close, /obj/structure/bed/roller, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) @@ -8826,7 +8790,6 @@ pixel_y = 14 }, /obj/item/prop/alien/hugger, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -9693,7 +9656,6 @@ /area/lv522/atmos/north_command_centre) "erw" = ( /obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "erA" = ( @@ -10242,11 +10204,6 @@ }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) -"eDt" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "eDz" = ( /obj/structure/surface/table/almayer{ flipped = 1 @@ -10431,7 +10388,6 @@ /area/lv522/atmos/east_reactor/west) "eHX" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; icon_state = "floor_marked" @@ -10473,7 +10429,6 @@ /area/lv522/atmos/east_reactor/south) "eJc" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "eJd" = ( @@ -12273,7 +12228,6 @@ /obj/item/paper/crumpled/bloody{ pixel_x = -9 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "fwV" = ( @@ -12613,7 +12567,6 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison{ @@ -13600,7 +13553,6 @@ pixel_y = 3 }, /obj/item/clothing/glasses/meson, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -14356,7 +14308,6 @@ "gnl" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/airlock, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -14569,7 +14520,6 @@ pixel_x = -4; pixel_y = 2 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "gse" = ( @@ -15383,7 +15333,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ dir = 4; @@ -17342,7 +17291,6 @@ /obj/item/trash/plate{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "hpe" = ( @@ -17974,7 +17922,6 @@ "hBC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/autopsy_scanner, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -19110,7 +19057,6 @@ /obj/item/tool/pen/blue/clicky{ pixel_x = 6 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "hYw" = ( @@ -19810,14 +19756,6 @@ icon_state = "marked" }, /area/lv522/indoors/b_block/bridge) -"img" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) "imh" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -19931,7 +19869,6 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -20041,7 +19978,6 @@ pixel_x = 13; pixel_y = 17 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "wood" }, @@ -20501,7 +20437,6 @@ /obj/item/shard{ icon_state = "medium" }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ dir = 4; @@ -21294,7 +21229,6 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "iPO" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) @@ -23796,14 +23730,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/north_command_centre) -"jJc" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "jJh" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -24975,7 +24901,6 @@ /area/lv522/indoors/a_block/security) "kfi" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, @@ -25140,11 +25065,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) -"khz" = ( -/obj/item/trash/uscm_mre, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) "khG" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/shale/layer1, @@ -26235,7 +26155,6 @@ "kBU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -27301,7 +27220,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -27461,7 +27379,6 @@ }, /obj/item/clothing/under/suit_jacket/stowaway, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "multi_tiles" }, @@ -31623,7 +31540,6 @@ pixel_x = -3; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison{ @@ -33652,7 +33568,6 @@ /area/lv522/atmos/east_reactor/south) "nqj" = ( /obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "nqo" = ( @@ -33774,7 +33689,6 @@ pixel_y = 11 }, /obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -34329,14 +34243,6 @@ icon_state = "plate" }, /area/lv522/atmos/filt) -"nFM" = ( -/obj/effect/landmark/objective_landmark/science, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) "nFN" = ( /obj/item/tool/weldingtool{ pixel_x = 6; @@ -34503,7 +34409,6 @@ /area/lv522/indoors/lone_buildings/engineering) "nJO" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, /obj/structure/machinery/light{ dir = 4 }, @@ -35343,19 +35248,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"nXi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "nXl" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = 4; @@ -35496,7 +35388,6 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "nZn" = ( -/obj/effect/landmark/objective_landmark/close, /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/large_stack, /turf/open/floor/plating{ @@ -35616,12 +35507,6 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/c_block/t_comm) -"oce" = ( -/obj/item/stack/sheet/metal, -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) "ocn" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -36840,7 +36725,6 @@ /area/lv522/indoors/c_block/t_comm) "ozJ" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -36866,7 +36750,6 @@ /area/lv522/indoors/a_block/hallway) "oAd" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "oAp" = ( @@ -37070,7 +36953,6 @@ pixel_y = 16 }, /obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) "oFN" = ( @@ -38270,10 +38152,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/dorms) -"pdR" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) "pej" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -38866,7 +38744,6 @@ /area/lv522/outdoors/colony_streets/north_street) "pqA" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -38892,7 +38769,6 @@ pixel_x = 8; pixel_y = 15 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan2" @@ -39452,7 +39328,6 @@ pixel_y = 16 }, /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ dir = 4; @@ -39849,7 +39724,6 @@ "pJd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -42791,7 +42665,6 @@ dir = 4; pixel_y = -5 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -43292,7 +43165,6 @@ pixel_x = -9; pixel_y = 10 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -43733,7 +43605,6 @@ "qZh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/egg_box, -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkpurplefull2" @@ -44161,7 +44032,6 @@ pixel_x = -6; pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" @@ -44190,7 +44060,6 @@ pixel_x = 5; registered_name = "John Forklift" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -44198,7 +44067,6 @@ "rfW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/glasses/sunglasses, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "rge" = ( @@ -44398,7 +44266,6 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "rkd" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "kitchen" @@ -44937,7 +44804,6 @@ /obj/item/reagent_container/hypospray/autoinjector/kelotane{ pixel_y = -3 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -45129,7 +44995,6 @@ /obj/item/tool/surgery/cautery, /obj/item/tool/surgery/retractor, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -45308,11 +45173,6 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_street) -"rBy" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) "rBz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -45676,7 +45536,6 @@ "rJH" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "rJI" = ( @@ -45935,11 +45794,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/lone_buildings/chunk) -"rNO" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "rOb" = ( /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -46513,7 +46367,6 @@ pixel_x = 7; pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) "rZc" = ( @@ -46955,7 +46808,6 @@ /obj/item/storage/fancy/cigarettes/blackpack{ pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "sha" = ( @@ -47852,13 +47704,6 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) -"syt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) "syy" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 @@ -48175,7 +48020,6 @@ }, /area/lv522/indoors/a_block/kitchen/glass) "sED" = ( -/obj/effect/landmark/objective_landmark/close, /obj/structure/barricade/wooden{ dir = 4 }, @@ -50176,7 +50020,6 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan3" @@ -50907,7 +50750,6 @@ "tDu" = ( /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan2" @@ -52601,7 +52443,6 @@ "uhF" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -52668,7 +52509,6 @@ /area/lv522/indoors/a_block/hallway) "uii" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -53013,7 +52853,6 @@ "upP" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "upX" = ( @@ -53177,7 +53016,6 @@ pixel_x = -3; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison{ dir = 4; @@ -53228,7 +53066,6 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -53414,7 +53251,6 @@ pixel_y = 9 }, /obj/item/storage/firstaid/fire, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -53949,7 +53785,6 @@ /area/lv522/atmos/cargo_intake) "uHq" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, /obj/structure/machinery/camera/autoname{ dir = 8 }, @@ -54607,13 +54442,6 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) -"uSw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) "uSB" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "31" @@ -54814,7 +54642,6 @@ pixel_x = 7; pixel_y = 7 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -54952,7 +54779,6 @@ /obj/item/reagent_container/food/snacks/toastedsandwich{ pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -55002,7 +54828,6 @@ /obj/item/device/flashlight/lamp{ pixel_x = 7 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -55168,7 +54993,6 @@ pixel_x = 5; pixel_y = -13 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "darkbrownfull2" @@ -56289,7 +56113,6 @@ /area/lv522/atmos/east_reactor/south) "vxv" = ( /obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) "vxD" = ( @@ -56903,7 +56726,6 @@ "vHU" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/cobweb, /obj/structure/machinery/power/apc/weak{ dir = 1 @@ -57663,7 +57485,6 @@ pixel_x = -7; pixel_y = 12 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "vUx" = ( @@ -58736,7 +58557,6 @@ "wpd" = ( /obj/structure/surface/table/gamblingtable, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "wpg" = ( @@ -58782,14 +58602,6 @@ "wqa" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/colony_streets/north_west_street) -"wqn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "wqt" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "16" @@ -59062,7 +58874,6 @@ pixel_x = 4; pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -59219,7 +59030,6 @@ /area/lv522/atmos/east_reactor/south) "wyE" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -59560,13 +59370,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"wEQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "wEW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -59652,7 +59455,6 @@ /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -59820,14 +59622,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"wKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) "wKR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -59864,7 +59658,6 @@ "wLN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -59969,7 +59762,6 @@ /area/lv522/outdoors/n_rockies) "wOC" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -61042,11 +60834,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"xkr" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) "xkv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ @@ -61222,7 +61009,6 @@ /area/lv522/indoors/lone_buildings/chunk) "xnG" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -62354,7 +62140,6 @@ /area/lv522/indoors/c_block/cargo) "xNo" = ( /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "xNt" = ( @@ -62560,7 +62345,6 @@ pixel_y = 4 }, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "floor_plate" @@ -63061,13 +62845,6 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) -"xZy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/indoors/c_block/mining) "xZz" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, @@ -63117,7 +62894,6 @@ pixel_y = 4 }, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -63530,7 +63306,6 @@ }, /obj/item/storage/firstaid/adv, /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "white_cyan1" @@ -63720,7 +63495,6 @@ pixel_y = 14 }, /obj/item/tool/screwdriver, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, @@ -63767,7 +63541,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 1; icon_state = "blue_plate" @@ -63810,7 +63583,6 @@ name = "remote door-control"; pixel_x = -7 }, -/obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison{ dir = 4; @@ -71880,7 +71652,7 @@ gFp eaE gIv eaE -img +hNZ eaE eaE uWO @@ -72183,7 +71955,7 @@ kJb jbd fms wan -wEQ +wan nLm nLm ien @@ -72626,7 +72398,7 @@ kcS rVW pMd kun -syt +mVH ruS rYE ruS @@ -73061,7 +72833,7 @@ trj fjP fjP rox -wEQ +wan pMd xRG klY @@ -73087,7 +72859,7 @@ mtt aFN dmn pMd -wEQ +wan rox fjP uOs @@ -74372,7 +74144,7 @@ tfP tfP eaE eaE -eDt +erw bex eaE eaE @@ -74418,7 +74190,7 @@ oYa nTv nLm sdM -wEQ +wan kDH jHj lcT @@ -74599,7 +74371,7 @@ tfP tfP eaE eaE -eDt +erw fFA gzu eaE @@ -75560,7 +75332,7 @@ kcS kcS lBj wan -wEQ +wan oWy lBj oTg @@ -77441,7 +77213,7 @@ tSL hpq max rIj -nXi +nbg rWv rWv rwp @@ -78314,7 +78086,7 @@ hxt tUM eAm rGE -wEQ +wan pMd spo tVv @@ -78739,11 +78511,11 @@ fjP pTB nLm nti -syt +mVH mVH nwj ghw -syt +mVH qAF rro nLm @@ -78990,7 +78762,7 @@ uaT nwj nLm qxb -wqn +sdM cve vJT sLQ @@ -79517,7 +79289,7 @@ wIr vDL aPu oqp -pdR +qzQ aPu vDL wIr @@ -81107,7 +80879,7 @@ vDL hhI oqp qzQ -jJc +aPu vDL wIr wIr @@ -83524,7 +83296,7 @@ lVp lWh vAn yca -xkr +yca wSt gYX roL @@ -84450,7 +84222,7 @@ vXc fXx jmG jmG -rNO +dUW jwM bYy oxq @@ -85565,7 +85337,7 @@ gaS kqb lVp fiG -xkr +yca gXz eAC jfO @@ -86528,7 +86300,7 @@ tMS wIr wIr jSW -cFW +hhI fIa iQo tkf @@ -87442,7 +87214,7 @@ uWT uWT oLa fTP -cFW +hhI jBm rQg leP @@ -88142,7 +87914,7 @@ vpe kZs pIx wpF -xZy +lNT lNT lNT wpF @@ -91273,7 +91045,7 @@ vNk dtE ozn pUo -uSw +lVV xvl icW eHI @@ -92101,7 +91873,7 @@ alI cpy cpy wDj -aJS +wJk ezo eJR iDH @@ -92407,7 +92179,7 @@ wNp vNk vNk vLQ -wKD +oga vNk xvl xje @@ -95326,7 +95098,7 @@ pqU lSl tTK jmi -cMt +rYD kiG gvr lVK @@ -96235,7 +96007,7 @@ pzH pNq xbN pXx -nFM +bkh wbX wpg puu @@ -97803,7 +97575,7 @@ lHa orS kNe sWr -khz +dPG wGY sWr xxU @@ -99392,7 +99164,7 @@ ibk lKF vqv iIs -oce +lHV pfX ngY mpr @@ -99400,7 +99172,7 @@ jMr iCC wWV lOq -rBy +oGF mgk vUb gdO diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 336dc6a902..20757954b5 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -592,7 +592,6 @@ "ada" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/shovel, -/obj/structure/machinery/computer/objective, /obj/item/stack/sheet/wood{ amount = 16 }, @@ -711,7 +710,6 @@ /obj/item/stack/sheet/mineral/diamond{ amount = 2 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -727,7 +725,6 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -799,7 +796,6 @@ /obj/item/stack/sheet/mineral/tritium{ pixel_x = -4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -1011,11 +1007,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/floor, /area/lv624/ground/barrens/containers) -"aeO" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/lv624/ground/barrens/containers) "aeQ" = ( /obj/vehicle/train/cargo/engine, /obj/effect/landmark/good_item, @@ -1369,7 +1360,6 @@ /obj/item/explosive/grenade/high_explosive/stick{ pixel_x = -6 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -1664,7 +1654,6 @@ /area/lv624/ground/barrens/east_barrens/ceiling) "aij" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ dir = 1; icon_state = "warnplate" @@ -2780,7 +2769,6 @@ dir = 1 }, /obj/item/storage/belt/medical/full, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "whiteblue" @@ -3084,7 +3072,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "whiteblue" @@ -3525,7 +3512,6 @@ /area/lv624/lazarus/quartstorage/outdoors) "ath" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -3655,7 +3641,6 @@ /obj/item/alien_embryo{ pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -3769,7 +3754,6 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "whitebluefull" }, @@ -3905,7 +3889,6 @@ /area/lv624/lazarus/fitness) "auH" = ( /obj/structure/closet/crate/secure/hydrosec, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -4183,7 +4166,6 @@ /obj/structure/surface/table, /obj/item/tool/crowbar, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -4195,7 +4177,6 @@ /area/lv624/ground/river/west_river) "avL" = ( /obj/structure/closet/lasertag/blue, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -4524,7 +4505,6 @@ /area/lv624/lazarus/research) "awO" = ( /obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor, /area/lv624/lazarus/fitness) "awP" = ( @@ -4701,7 +4681,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -4786,7 +4765,6 @@ /obj/item/book/manual/research_and_development, /obj/item/cell/hyper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -5049,7 +5027,6 @@ "ayL" = ( /obj/item/clothing/suit/redtag, /obj/structure/closet/athletic_mixed, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -5073,7 +5050,6 @@ pixel_x = 5 }, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -5123,9 +5099,6 @@ /area/lv624/lazarus/robotics) "ayX" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/objective{ - dir = 4 - }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) "ayY" = ( @@ -5361,7 +5334,6 @@ /area/lv624/lazarus/robotics) "azL" = ( /obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -5387,7 +5359,6 @@ icon_state = "open"; opened = 1 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "bluecorner" }, @@ -5854,7 +5825,6 @@ layer = 2.5 }, /obj/structure/largecrate/random, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ icon_state = "platebot" }, @@ -5901,7 +5871,6 @@ "aBv" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -6255,7 +6224,6 @@ /obj/structure/bed, /obj/item/bedsheet/purple, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 9; icon_state = "purple" @@ -6383,7 +6351,6 @@ pixel_x = -30 }, /obj/item/clothing/under/colonist, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "purple" @@ -6464,7 +6431,6 @@ "aDr" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating{ icon_state = "platebot" }, @@ -7447,7 +7413,6 @@ /obj/structure/surface/table, /obj/structure/prop/mech/drill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "vault" }, @@ -8665,7 +8630,6 @@ /area/lv624/lazarus/security) "aMc" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "bluecorner" }, @@ -8963,7 +8927,6 @@ /area/lv624/lazarus/yggdrasil) "aNE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/effect/landmark/objective_landmark/close, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) "aNF" = ( @@ -9301,7 +9264,6 @@ "aOP" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "bar" }, @@ -9344,7 +9306,6 @@ }, /obj/item/paper_bin, /obj/item/tool/pen, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -9419,7 +9380,6 @@ name = "General Listening Channel"; pixel_y = 30 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -10192,7 +10152,6 @@ /area/lv624/lazarus/hop) "aSz" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "vault" }, @@ -10542,7 +10501,6 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "platebot" }, @@ -10709,7 +10667,6 @@ "aUv" = ( /obj/item/device/flashlight, /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "red" @@ -10948,7 +10905,6 @@ /area/lv624/ground/barrens/central_barrens) "aVo" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "grimy" }, @@ -11071,7 +11027,6 @@ /area/lv624/ground/jungle/south_west_jungle) "aVL" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) "aVM" = ( @@ -11136,7 +11091,6 @@ "aVY" = ( /obj/structure/surface/rack, /obj/item/ore/silver, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) "aVZ" = ( @@ -11450,7 +11404,6 @@ dir = 8 }, /obj/item/cell/high, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) "aWT" = ( @@ -11815,12 +11768,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) -"aYn" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "aYo" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -12039,16 +11986,12 @@ "aZg" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light/small, -/obj/structure/machinery/computer/objective{ - dir = 1 - }, /turf/open/floor{ icon_state = "grimy" }, /area/lv624/lazarus/captain) "aZh" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "brown" @@ -12069,7 +12012,6 @@ /obj/item/reagent_container/food/snacks/syndicake{ layer = 2.6 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "grimy" }, @@ -12095,7 +12037,6 @@ "aZp" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood{ icon_state = "wood-broken6" }, @@ -12106,11 +12047,6 @@ icon_state = "freezerfloor" }, /area/lv624/lazarus/kitchen) -"aZt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "aZw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/bronze, @@ -12131,7 +12067,6 @@ /area/lv624/lazarus/engineering) "aZy" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -12144,7 +12079,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "redcorner" @@ -12191,7 +12125,6 @@ /area/lv624/lazarus/kitchen) "aZE" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "grimy" }, @@ -12205,7 +12138,6 @@ /area/lv624/lazarus/hop) "aZG" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -12404,7 +12336,6 @@ dir = 8; health = 80 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -12694,7 +12625,6 @@ dir = 4; health = 80 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "bOg" = ( @@ -12773,14 +12703,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"bXP" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) "bZb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -12803,12 +12725,6 @@ "cag" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) -"caH" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "caX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -12846,11 +12762,6 @@ "cfN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"cfP" = ( -/obj/effect/decal/remains/human, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "cfT" = ( /obj/structure/bed/chair{ dir = 8 @@ -12874,13 +12785,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_central_jungle) -"cgK" = ( -/obj/item/stool, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "chf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, @@ -12998,10 +12902,6 @@ /obj/structure/foamed_metal, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) -"czq" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "czu" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -13103,7 +13003,6 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating{ dir = 1; icon_state = "asteroidfloor" @@ -13359,7 +13258,6 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "dark" }, @@ -13370,7 +13268,6 @@ /area/lv624/ground/jungle/east_jungle) "dsz" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "green" @@ -13505,13 +13402,6 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/medbay) -"dID" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "dIO" = ( /turf/open/gm/dirt{ icon_state = "desert0" @@ -13531,7 +13421,6 @@ /obj/item/book/manual/research_and_development, /obj/item/book/manual/medical_diagnostics_manual, /obj/item/book/manual/security_space_law, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 5; icon_state = "whiteblue" @@ -13600,10 +13489,6 @@ icon_state = "desert1" }, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"dTY" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "dVH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) @@ -13632,13 +13517,6 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"dWa" = ( -/obj/effect/landmark/objective_landmark/science, -/obj/structure/barricade/wooden, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "dWM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -13666,10 +13544,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"eah" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "eaJ" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -13831,10 +13705,6 @@ icon_state = "cult" }, /area/lv624/ground/caves/south_west_caves) -"euh" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "euW" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/candle, @@ -13846,13 +13716,6 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"ewg" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "exf" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) @@ -13984,7 +13847,6 @@ /area/lv624/ground/jungle/south_east_jungle) "eLx" = ( /obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/objective_landmark/medium, /turf/open/shuttle{ icon_state = "floor4" }, @@ -14048,7 +13910,6 @@ /area/lv624/ground/caves/south_west_caves) "eYh" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -14512,13 +14373,6 @@ "gdx" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/west_barrens) -"gdy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "gef" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -14529,26 +14383,12 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz2) -"gfc" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "ggl" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"gin" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "git" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -14599,10 +14439,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"grZ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "gss" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/shuttle{ @@ -14615,11 +14451,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"gte" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "guQ" = ( /obj/effect/landmark/nightmare{ insert_tag = "cargospecial2" @@ -14723,10 +14554,6 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"gIe" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "gKg" = ( /obj/item/clothing/head/hardhat/orange, /turf/open/floor/plating{ @@ -14770,8 +14597,6 @@ pixel_x = 8; pixel_y = 16 }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 9; icon_state = "whiteblue" @@ -14855,13 +14680,6 @@ /obj/item/stack/yautja_rope, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"hcv" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "hcN" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -14922,7 +14740,6 @@ /area/lv624/lazarus/corporate_dome) "hhU" = ( /obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/lv624/ground/barrens/containers) "hjl" = ( @@ -14953,15 +14770,6 @@ icon_state = "bot" }, /area/lv624/ground/caves/north_central_caves) -"hpN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "hqQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -15046,13 +14854,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"hEs" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "hEu" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -15086,13 +14887,6 @@ /obj/structure/cargo_container/lockmart/left, /turf/open/floor, /area/lv624/ground/barrens/containers) -"hJd" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) "hJn" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, @@ -15109,13 +14903,6 @@ "hLu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) -"hMd" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "hMr" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -15221,12 +15008,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"hZW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "iab" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) @@ -15336,11 +15117,6 @@ icon_state = "bcarpet09" }, /area/lv624/ground/caves/north_central_caves) -"iml" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "ioC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) @@ -15355,14 +15131,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"isR" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "itE" = ( /turf/open/floor/plating{ dir = 6; @@ -15826,13 +15594,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) -"jKX" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "jLc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -15883,14 +15644,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"jNR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) "jQj" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -15916,7 +15669,6 @@ /obj/item/stack/sheet/mineral/sandstone{ amount = 50 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "jRm" = ( @@ -16154,7 +15906,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 9; icon_state = "green" @@ -16355,7 +16106,6 @@ /area/lv624/ground/jungle/south_central_jungle) "kZS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "whiteblue" @@ -16573,15 +16323,6 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"lIo" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) "lIU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_central_jungle) @@ -16731,16 +16472,6 @@ icon_state = "bot" }, /area/lv624/lazarus/landing_zones/lz1) -"maE" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) "mbp" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -16806,7 +16537,6 @@ }, /area/lv624/ground/river/east_river) "mjB" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "whitebluecorner" @@ -17407,14 +17137,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nDr" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "nEd" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -17546,12 +17268,6 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"nMu" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) "nMJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, @@ -17560,15 +17276,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) -"nOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "nOX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -17805,11 +17512,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"oiv" = ( -/obj/effect/decal/remains/human, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -18046,7 +17748,6 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc, /obj/item/clothing/under/marine/veteran/pmc, /obj/item/storage/fancy/cigar, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 5; icon_state = "whiteyellow" @@ -18199,13 +17900,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/south_nexus_road) -"pbG" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "pca" = ( /obj/effect/landmark/nightmare{ insert_tag = "nexuscenter" @@ -18225,13 +17919,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) -"pcz" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "pcA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) @@ -18291,10 +17978,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"pmt" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "pmz" = ( /turf/open/gm/dirt{ icon_state = "desert2" @@ -18328,10 +18011,6 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"pqa" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "prd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/floor{ @@ -18547,11 +18226,6 @@ "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) -"pOK" = ( -/obj/item/ammo_casing, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "pOW" = ( /obj/item/storage/firstaid/toxin, /turf/open/floor{ @@ -18627,7 +18301,6 @@ /area/lv624/ground/colony/west_nexus_road) "pTk" = ( /obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "white" }, @@ -18793,7 +18466,6 @@ pixel_y = 4 }, /obj/item/folder/red, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whiteyellow" @@ -18917,7 +18589,6 @@ /area/lv624/ground/jungle/north_west_jungle) "qJg" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whiteblue" }, @@ -19061,12 +18732,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"rcY" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "rdS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical{ @@ -19165,11 +18830,6 @@ }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"ruB" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) "rvL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass2, @@ -19408,15 +19068,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"rYI" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/river, -/area/lv624/ground/caves/west_caves) "rZL" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -19479,11 +19134,6 @@ icon_state = "grass1" }, /area/lv624/ground/barrens/south_eastern_barrens) -"sic" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -19512,12 +19162,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"snI" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "spm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -20252,10 +19896,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"tYx" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "tZa" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, @@ -20424,10 +20064,6 @@ "unp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_east_caves) -"uns" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "unT" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, @@ -20605,12 +20241,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) -"uOK" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) "uRb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -20662,10 +20292,6 @@ icon_state = "desert1" }, /area/lv624/ground/barrens/south_eastern_barrens) -"uVk" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz1) "uVx" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/warning_stripes, @@ -20719,9 +20345,6 @@ /area/lv624/lazarus/landing_zones/lz1) "uZz" = ( /obj/structure/surface/table/holotable, -/obj/structure/machinery/computer/objective{ - dir = 5 - }, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -20754,10 +20377,6 @@ icon_state = "dark" }, /area/lv624/lazarus/corporate_dome) -"vef" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "veo" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_3_1" @@ -20824,10 +20443,6 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"vkN" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/south_central_jungle) "vly" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -20940,13 +20555,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"vEj" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "vEp" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -21021,10 +20629,6 @@ "vOF" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) -"vPu" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/lv624/ground/barrens/containers) "vPV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_jungle) @@ -21040,11 +20644,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/cult, /area/lv624/ground/caves/south_west_caves) -"vUO" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "vVf" = ( /turf/open/floor{ dir = 5; @@ -21074,10 +20673,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"vZT" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "wbK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -21338,10 +20933,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/river/east_river) -"wFx" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/lv624/ground/jungle/west_jungle/ceiling) "wFR" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood/drip, @@ -21393,10 +20984,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"wNp" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "wNB" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/floor{ @@ -21667,7 +21254,6 @@ /area/lv624/ground/caves/north_east_caves) "xqV" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -21856,10 +21442,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"xTa" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "xTM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -21953,14 +21535,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz2) -"yhR" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "yhY" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, @@ -21986,7 +21560,6 @@ pixel_y = 6 }, /obj/item/storage/firstaid/adv, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) "yjh" = ( @@ -22010,7 +21583,6 @@ /area/lv624/ground/colony/south_nexus_road) "ylI" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 10; icon_state = "whiteyellow" @@ -23603,7 +23175,7 @@ lyz aWl qBW aWO -hMd +aWO aWl aVS aLi @@ -23735,7 +23307,7 @@ afV afV nBh nBh -uOK +nBh afV nBh nBh @@ -23977,7 +23549,7 @@ nBh afV ane ane -euh +ahF ahF ane ane @@ -24869,7 +24441,7 @@ mdQ gwP gwP gwP -pqa +gwP ane afV afV @@ -25105,7 +24677,7 @@ afV afV afV afV -uOK +nBh eVH nBh nBh @@ -25547,7 +25119,7 @@ gwP gwP gwP gwP -vef +gwP mdQ mdQ mdQ @@ -27822,7 +27394,7 @@ gwP gwP gwP gwP -wNp +gwP mdQ acp acp @@ -27838,7 +27410,7 @@ ane ane ahF ahF -vZT +ahF ahF ahF ahF @@ -27884,7 +27456,7 @@ aBn aqS aFQ aug -wFx +auf avo aFQ xTM @@ -27914,7 +27486,7 @@ vxa eiH yhH jQV -bXP +vxa tZD aAp aAp @@ -29217,7 +28789,7 @@ ane ane ane afV -pmt +ahF ahF ahF ahF @@ -29526,11 +29098,11 @@ aTf aTf aUQ aUQ -iml +ygp aUQ -aZt +ygp aUQ -vUO +ygp aUQ aUj aTf @@ -29887,7 +29459,7 @@ ane ahF ahF ahH -pmt +ahF uWJ uWJ ahF @@ -29984,7 +29556,7 @@ aUQ aUQ ygp aUQ -gte +ygp aUQ ygp aUQ @@ -30894,7 +30466,7 @@ aTf aTf aUS aUQ -iml +ygp aUQ aWW aUQ @@ -31246,7 +30818,7 @@ gwP aes aez aez -rYI +aez acp ane ane @@ -31918,7 +31490,7 @@ gwP gwP gwP gwP -pqa +gwP acp xZE gwP @@ -32164,7 +31736,7 @@ ane afV ahF ahF -vZT +ahF ahF ahF ahF @@ -34887,7 +34459,7 @@ eGD ufG eGD eGD -gIe +eGD ufG eGD ufG @@ -34910,7 +34482,7 @@ xwr ahx ahJ ahW -rcY +ahL ahL ahJ ahx @@ -35137,9 +34709,9 @@ xwr xwr ahy ahK -hZW ahL -rcY +ahL +ahL ahL ahy xwr @@ -35364,7 +34936,7 @@ xwr xwr xwr ahz -rcY +ahL ahL aie aiu @@ -35422,7 +34994,7 @@ axi axj ayF axe -cgK +axA aCk ado ifk @@ -35592,11 +35164,11 @@ xwr xwr xwr ahy -hZW ahL -rcY ahL -hZW +ahL +ahL +ahL ahy xwr lTZ @@ -36692,7 +36264,7 @@ eGD eGD eGD eGD -xTa +eGD abS abS abS @@ -37736,7 +37308,7 @@ aQn aQn aQn aQn -isR +aSg aSg aPT ooM @@ -37844,7 +37416,7 @@ eGD eGD eGD eGD -xTa +eGD abS abS abS @@ -38146,7 +37718,7 @@ atO atO atO asT -hpN +avB atp aum asT @@ -38608,7 +38180,7 @@ awG avq axF ayq -nMu +axF asU psh psh @@ -38871,7 +38443,7 @@ aQn aQn aQn aQn -vEj +aQn aTg rVH aQn @@ -39338,7 +38910,7 @@ aPt aPt kxI awL -vkN +qtj qtj hLu tsa @@ -40584,7 +40156,7 @@ eGD eGD eGD eGD -xTa +eGD abS abS wVk @@ -41287,9 +40859,9 @@ agf ajW ajW ajW -eah ajW -dTY +ajW +ajW afX agk ahQ @@ -41512,7 +41084,7 @@ afw afK afN ajW -gfc +aVn agt agD agR @@ -41739,9 +41311,9 @@ afk afv afL afX -oiv +agg ago -cfP +agg ajW agS afN @@ -42282,7 +41854,7 @@ aKF aLf aLN aLM -sic +aNG aOv aPh aPV @@ -42653,9 +42225,9 @@ afN ajW afX agg -grZ ajW -pOK +ajW +afN ajW ajW afN @@ -43341,7 +42913,7 @@ ajW ajW ajW afN -eah +ajW ajW ajW ahQ @@ -43542,7 +43114,7 @@ abS abS abS abS -xTa +eGD eGD eGD eGD @@ -44059,7 +43631,7 @@ aoA aoP aoP aoA -hEs +aoA aoP aoP aoA @@ -45342,7 +44914,7 @@ acf abl abl abl -czq +abl uxU uxU abl @@ -45475,7 +45047,7 @@ aLk aLS aMZ aMZ -snI +aMZ aPo aLk aZi @@ -45834,7 +45406,7 @@ aem qjf aeA qjf -vPu +qjf qjf qjf afg @@ -46524,7 +46096,7 @@ qjf qjf afl qjf -pcz +aex qjf qjf lQC @@ -47629,7 +47201,7 @@ uxU uxU abl abl -tYx +abl acf acf acf @@ -48799,7 +48371,7 @@ xNK xNK xNK qjf -aeO +hhU qjf qjf qjf @@ -48889,7 +48461,7 @@ azt aWj aJd aJI -jNR +aJf aJc azt azt @@ -49048,7 +48620,7 @@ lQC lQC iXj aiA -nOD +aiQ ajh ajs sqj @@ -49465,7 +49037,7 @@ yfH gcI xyI adf -aYn +yfH kSs vhx sfH @@ -49692,7 +49264,7 @@ acT kRr ada add -aYn +yfH nUC sfH wcK @@ -50377,7 +49949,7 @@ xyI vuy dOf psZ -dWa +fNA kSs ecy ecy @@ -50929,7 +50501,7 @@ aBC aBC aIB aNd -yhR +aIB aDY aEX aFv @@ -51762,7 +51334,7 @@ ahv slW uFA nPk -pbG +urR nUs uFA aeg @@ -52749,7 +52321,7 @@ ati ati wWs ati -ruB +wWs ati aAD ati @@ -52967,7 +52539,7 @@ ask ask ask ask -caH +ask ask arK asN @@ -52977,7 +52549,7 @@ ati azV hNR ati -ruB +wWs ati wWs ati @@ -53132,7 +52704,7 @@ pEV mhZ mhZ mhZ -dID +pEV kbr jFc rYA @@ -53418,7 +52990,7 @@ asA asj asj ask -gin +ask ask ask avx @@ -54129,7 +53701,7 @@ aGc aDM aDM aHs -maE +eaJ aIw aJl aIw @@ -54335,7 +53907,7 @@ ask ask ask atd -hcv +atd cfD cfD apu @@ -54474,7 +54046,7 @@ jMS jMS fTM fTM -uns +fTM whU whU whU @@ -55932,7 +55504,7 @@ ati wQj axa axa -lIo +nAR lyS apu apu @@ -56380,7 +55952,7 @@ asO axa axa ati -hJd +atE rGB ati rZL @@ -56841,7 +56413,7 @@ avh ati avU aub -nDr +fFM ati ati axa @@ -58703,7 +58275,7 @@ btF aky aky aky -uVk +aky aky btF akj @@ -60423,7 +59995,7 @@ afS izX rwB agX -jKX +aut jFc rJd boe @@ -60657,7 +60229,7 @@ kSH boe rJd aeg -ewg +hcN twN uOi ufW @@ -61110,7 +60682,7 @@ ahv ahv ahv afS -gdy +hcN afS aeg uOi diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm index 26bfd92837..af57be0474 100644 --- a/maps/map_files/LV624/armory/10.cheese.dmm +++ b/maps/map_files/LV624/armory/10.cheese.dmm @@ -242,12 +242,6 @@ icon_state = "cult" }, /area/lv624/lazarus/armory) -"M" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "Q" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, @@ -308,7 +302,7 @@ i k p p -M +p A i "} diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm index f9c0f47729..6ac8be8435 100644 --- a/maps/map_files/LV624/armory/10.extra.dmm +++ b/maps/map_files/LV624/armory/10.extra.dmm @@ -247,12 +247,6 @@ icon_state = "cult" }, /area/lv624/lazarus/armory) -"H" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) (1,1,1) = {" a @@ -298,7 +292,7 @@ i k p p -H +p A i "} diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm index 478a3db3ea..cf9c2d141a 100644 --- a/maps/map_files/LV624/armory/10.looted.dmm +++ b/maps/map_files/LV624/armory/10.looted.dmm @@ -209,15 +209,9 @@ icon_state = "cult" }, /area/lv624/lazarus/armory) -"Y" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) (1,1,1) = {" -Y +a a a a diff --git a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm index 80d478e1ef..50bb156910 100644 --- a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm +++ b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm @@ -29,7 +29,6 @@ pixel_x = 4; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm index 7433f2f613..c9b6287887 100644 --- a/maps/map_files/LV624/centralcaves/10.T.dmm +++ b/maps/map_files/LV624/centralcaves/10.T.dmm @@ -68,10 +68,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"C" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "G" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -158,7 +154,7 @@ w f A V -C +V l l l @@ -211,7 +207,7 @@ l l l l -C +V V V V @@ -678,7 +674,7 @@ V V G V -C +V l l l diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm index 1e84fde006..67c707f60a 100644 --- a/maps/map_files/LV624/centralcaves/10.qc.dmm +++ b/maps/map_files/LV624/centralcaves/10.qc.dmm @@ -54,10 +54,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"x" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "y" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/west_barrens) @@ -463,7 +459,7 @@ C C g C -x +C l l l @@ -664,7 +660,7 @@ l l l l -x +C C C C diff --git a/maps/map_files/LV624/crashedship/10.digsite.dmm b/maps/map_files/LV624/crashedship/10.digsite.dmm index 6132b455f1..ed653d985f 100644 --- a/maps/map_files/LV624/crashedship/10.digsite.dmm +++ b/maps/map_files/LV624/crashedship/10.digsite.dmm @@ -132,12 +132,6 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"vA" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "vD" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, @@ -164,12 +158,6 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"yj" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "yJ" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -192,10 +180,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"Cn" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/gm/dirt, -/area/lv624/lazarus/crashed_ship_containers) "Dw" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -246,7 +230,6 @@ /area/lv624/lazarus/crashed_ship_containers) "Kz" = ( /obj/item/tool/crowbar, -/obj/effect/landmark/objective_landmark/science, /turf/open/shuttle{ icon_state = "floor4" }, @@ -355,7 +338,7 @@ KG yJ xg cZ -Cn +yV xg Xk Xk @@ -375,7 +358,7 @@ AA Xk gu yV -yj +xg LQ nt xg @@ -473,7 +456,7 @@ DT LQ ip UG -vA +xg Xk Xk PE diff --git a/maps/map_files/LV624/crashedship/10.swapped.dmm b/maps/map_files/LV624/crashedship/10.swapped.dmm index e8257934ce..da7a6e4da1 100644 --- a/maps/map_files/LV624/crashedship/10.swapped.dmm +++ b/maps/map_files/LV624/crashedship/10.swapped.dmm @@ -109,10 +109,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"qS" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/lazarus/crashed_ship_containers) "sq" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -142,13 +138,6 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"yS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/gm/dirt, -/area/lv624/lazarus/crashed_ship_containers) "zh" = ( /obj/effect/spawner/random/toolbox, /turf/open/gm/dirt, @@ -219,12 +208,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"Io" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "IT" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/blood/oil, @@ -353,7 +336,7 @@ iK ng fb eC -yS +fb pd Wh cb @@ -377,7 +360,7 @@ SS AT AI Pp -Io +Pa AI qk At @@ -442,7 +425,7 @@ Vy Um cb WE -qS +AI iF AI xU @@ -468,7 +451,7 @@ vh KY SS AI -Io +Pa fd Pa Pa diff --git a/maps/map_files/LV624/gym/20.pool.dmm b/maps/map_files/LV624/gym/20.pool.dmm index be863f49c5..a96c1eb1a1 100644 --- a/maps/map_files/LV624/gym/20.pool.dmm +++ b/maps/map_files/LV624/gym/20.pool.dmm @@ -20,7 +20,6 @@ pixel_x = -1; pixel_y = -8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -52,7 +51,6 @@ /area/lv624/lazarus/fitness) "hX" = ( /obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor, /area/lv624/lazarus/fitness) "ic" = ( @@ -135,7 +133,6 @@ /area/lv624/lazarus/fitness) "re" = ( /obj/structure/closet/crate/secure/hydrosec, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -213,13 +210,6 @@ icon_state = "whitepurplecorner" }, /area/lv624/lazarus/fitness) -"zq" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) "Be" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -260,15 +250,6 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"FO" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Ga" = ( /obj/structure/prop/static_tank/water, /turf/open/floor{ @@ -292,13 +273,6 @@ icon_state = "whitepurplecorner" }, /area/lv624/lazarus/fitness) -"IA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Jk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -340,7 +314,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -377,7 +350,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -487,7 +459,7 @@ vq Ei re vq -FO +Px Fx ic "} @@ -498,7 +470,7 @@ rI vq bQ bQ -zq +bQ ls bQ bQ @@ -649,7 +621,7 @@ iJ Vo kE vq -IA +vq UM vq vq diff --git a/maps/map_files/LV624/gym/30.alternate.dmm b/maps/map_files/LV624/gym/30.alternate.dmm index 79d0887c22..c22fa45a4f 100644 --- a/maps/map_files/LV624/gym/30.alternate.dmm +++ b/maps/map_files/LV624/gym/30.alternate.dmm @@ -48,7 +48,6 @@ /area/lv624/lazarus/fitness) "ej" = ( /obj/structure/closet/crate/secure/hydrosec, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -138,7 +137,6 @@ pixel_x = -1; pixel_y = -8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -246,14 +244,6 @@ }, /turf/open/floor, /area/lv624/lazarus/fitness) -"uV" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "uY" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -290,7 +280,6 @@ "xe" = ( /obj/structure/closet/boxinggloves, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -311,7 +300,6 @@ /area/lv624/lazarus/fitness) "Ah" = ( /obj/structure/closet/athletic_mixed, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -384,7 +372,6 @@ /obj/structure/holohoop{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "warnwhite" @@ -480,7 +467,6 @@ /area/lv624/lazarus/fitness) "JN" = ( /obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor, /area/lv624/lazarus/fitness) "Kc" = ( @@ -632,7 +618,6 @@ /area/lv624/lazarus/fitness) "Vk" = ( /obj/structure/closet/lasertag/red, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 4; icon_state = "whitepurplecorner" @@ -806,7 +791,7 @@ Tv hd Ia hd -uV +wA To It FD diff --git a/maps/map_files/LV624/hydro/30.destroyed.dmm b/maps/map_files/LV624/hydro/30.destroyed.dmm index 84e9ebb5c8..e4ae0fc538 100644 --- a/maps/map_files/LV624/hydro/30.destroyed.dmm +++ b/maps/map_files/LV624/hydro/30.destroyed.dmm @@ -533,14 +533,12 @@ /area/lv624/lazarus/hydroponics) "OK" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "platingdmg1" }, /area/lv624/lazarus/hydroponics) "OO" = ( /obj/item/ammo_magazine/rifle/nsg23/extended, -/obj/effect/landmark/objective_landmark/medium, /obj/item/stack/sheet/wood, /turf/open/floor/plating{ icon_state = "panelscorched" diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index 9289d34543..27e4f42b61 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -130,7 +130,6 @@ desc = "An old hide from a fearsome creature."; name = "hunter hide" }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "dE" = ( @@ -312,13 +311,6 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) -"fQ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "fV" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/rock/brown, @@ -412,7 +404,6 @@ name = "sacred ceremonial dagger"; pixel_x = 9 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "hA" = ( @@ -516,7 +507,6 @@ color = "#6b675e" }, /obj/item/restraints, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ color = "#5e5d5d"; icon_state = "multi_tiles" @@ -1158,25 +1148,6 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) -"BY" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "Cr" = ( /obj/effect/decal/cleanable/blood{ basecolor = "#20d450"; @@ -1474,7 +1445,6 @@ /obj/item/XenoItem/AntiAcid{ pixel_x = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "LF" = ( @@ -1740,7 +1710,6 @@ color = "#6b675e" }, /obj/item/stack/yautja_rope, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) "SF" = ( @@ -1777,7 +1746,6 @@ amount = 50; pixel_y = 7 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/corsat{ dir = 1; icon_state = "squareswood" @@ -2406,7 +2374,7 @@ gL Jc Jc Jc -fQ +gL wS oi qf @@ -3364,7 +3332,7 @@ ZX ZX GT OC -BY +KB mv mv mv diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index bcbf6a5477..f375b61213 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -39,7 +39,6 @@ dir = 8; health = 80 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "aN" = ( @@ -333,13 +332,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"jc" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "jZ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -355,7 +347,6 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "lI" = ( @@ -793,7 +784,6 @@ dir = 4; health = 80 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "wt" = ( @@ -1147,13 +1137,6 @@ "EJ" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/sand_temple) -"EL" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "EM" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1319,13 +1302,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"Ip" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "Ix" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ @@ -1822,20 +1798,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"Xr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"XQ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "XV" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -2044,7 +2006,7 @@ GT Jm rL Dg -Xr +Ge we rL xO @@ -2298,7 +2260,7 @@ gL Jc Jc Jc -EL +gL wS if qf @@ -2886,7 +2848,7 @@ ma wU po MB -jc +Yu py yc dA @@ -3679,7 +3641,7 @@ GT SW Ai Br -XQ +UX Mq Zi mv @@ -3766,7 +3728,7 @@ GT GT GT OC -Ip +UX OC xO FS diff --git a/maps/map_files/LV624/medbay/10.destroyed.dmm b/maps/map_files/LV624/medbay/10.destroyed.dmm index 88e17a3aee..bf310be7dd 100644 --- a/maps/map_files/LV624/medbay/10.destroyed.dmm +++ b/maps/map_files/LV624/medbay/10.destroyed.dmm @@ -184,7 +184,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -436,12 +435,6 @@ icon_state = "platingdmg1" }, /area/lv624/lazarus/medbay) -"LX" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "MT" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -479,7 +472,6 @@ dir = 1 }, /obj/item/storage/belt/medical/full, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "white" }, @@ -524,7 +516,6 @@ "PE" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "damaged5" @@ -556,12 +547,6 @@ icon_state = "damaged5" }, /area/lv624/lazarus/medbay) -"Sz" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "TC" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray, @@ -738,7 +723,7 @@ XA XJ XJ hW -LX +YV Gh UH Pk @@ -833,7 +818,7 @@ XA XJ XJ ok -Sz +YV aO YV JY diff --git a/maps/map_files/LV624/medbay/30.larvasurgery.dmm b/maps/map_files/LV624/medbay/30.larvasurgery.dmm index b67b5e7bf1..613b76c3e2 100644 --- a/maps/map_files/LV624/medbay/30.larvasurgery.dmm +++ b/maps/map_files/LV624/medbay/30.larvasurgery.dmm @@ -51,7 +51,6 @@ dir = 1 }, /obj/item/storage/belt/medical/full, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "whiteblue" @@ -93,7 +92,6 @@ /area/lv624/lazarus/medbay) "at" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "whitebluefull" }, @@ -386,7 +384,6 @@ "us" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whiteblue" }, @@ -439,7 +436,6 @@ /area/lv624/lazarus/medbay) "CZ" = ( /obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "white" }, @@ -557,7 +553,6 @@ /area/lv624/lazarus/medbay) "Vq" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "whiteblue" }, diff --git a/maps/map_files/LV624/science/10.yautja.dmm b/maps/map_files/LV624/science/10.yautja.dmm index c77bacd352..7c8df9531d 100644 --- a/maps/map_files/LV624/science/10.yautja.dmm +++ b/maps/map_files/LV624/science/10.yautja.dmm @@ -85,7 +85,6 @@ "ap" = ( /obj/structure/surface/table, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -98,7 +97,6 @@ /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/scalpel/predatorscalpel, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -107,15 +105,6 @@ "ar" = ( /turf/closed/wall, /area/lv624/lazarus/research) -"as" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "at" = ( /obj/structure/surface/table, /obj/item/clipboard, @@ -250,7 +239,6 @@ }, /obj/item/paper/research_notes, /obj/item/prop/alien/hugger, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -286,7 +274,6 @@ /obj/structure/surface/table, /obj/structure/machinery/cell_charger, /obj/item/tool/crowbar, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -353,7 +340,6 @@ /area/lv624/lazarus/research) "aW" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -393,7 +379,6 @@ "bb" = ( /obj/structure/surface/table, /obj/item/weapon/yautja/scythe, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -436,7 +421,6 @@ "bi" = ( /obj/structure/surface/table, /obj/item/weapon/yautja/knife, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -490,12 +474,6 @@ icon_state = "whitepurple" }, /area/lv624/lazarus/research) -"vn" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) "zm" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor{ @@ -583,7 +561,7 @@ ao ao ao ab -as +Zw ak ec ab @@ -623,7 +601,7 @@ al aG aX aX -vn +aX ac aa "} @@ -664,7 +642,7 @@ ab (7,1,1) = {" ac LE -as +Zw ec al ar diff --git a/maps/map_files/LV624/science/40.fullylocked.dmm b/maps/map_files/LV624/science/40.fullylocked.dmm index 8e523f6c7e..1957d6fef0 100644 --- a/maps/map_files/LV624/science/40.fullylocked.dmm +++ b/maps/map_files/LV624/science/40.fullylocked.dmm @@ -88,14 +88,6 @@ icon_state = "whitepurple" }, /area/lv624/lazarus/research) -"aq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "ar" = ( /obj/structure/machinery/chem_master, /turf/open/floor{ @@ -201,7 +193,6 @@ pixel_y = 12 }, /obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 5; icon_state = "whitepurple" @@ -294,7 +285,6 @@ pixel_y = 5 }, /obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -359,7 +349,6 @@ /area/lv624/lazarus/research) "bb" = ( /obj/item/clothing/glasses/regular, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "white" }, @@ -370,15 +359,6 @@ icon_state = "freezerfloor" }, /area/lv624/lazarus/research) -"bn" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "bp" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, /turf/open/floor{ @@ -428,12 +408,6 @@ icon_state = "white" }, /area/lv624/lazarus/research) -"ky" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) "oe" = ( /obj/structure/transmitter/colony_net{ phone_category = "Lazarus Landing"; @@ -479,15 +453,6 @@ icon_state = "white" }, /area/lv624/lazarus/research) -"Mu" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "Tz" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, @@ -521,7 +486,7 @@ ao ao ao ab -Mu +qs Jv ay ab @@ -534,7 +499,7 @@ aa (3,1,1) = {" aa ai -aq +aj as aF au @@ -561,7 +526,7 @@ ay aL wY wY -ky +wY ac aa "} @@ -602,7 +567,7 @@ ab (7,1,1) = {" ac Tz -aq +aj ay ay au @@ -670,7 +635,7 @@ ab (11,1,1) = {" ae ai -Mu +qs ay aJ ab @@ -680,7 +645,7 @@ ay ab aP ay -aq +aj ac bE "} @@ -712,7 +677,7 @@ aS bb ay ab -bn +Tz Tz aj ac diff --git a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm index 834d594eff..01a7f91c60 100644 --- a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm +++ b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm @@ -142,7 +142,6 @@ health = 1; on = 0 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ dir = 1; icon_state = "bot" diff --git a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm index 8b09597980..421249816a 100644 --- a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm +++ b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm @@ -632,7 +632,6 @@ /obj/item/limb/foot/l_foot, /obj/item/ammo_casing, /obj/item/ammo_casing, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor{ icon_state = "floorscorched1" }, diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index 4c53a79e90..e69c2de5bc 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -455,7 +455,6 @@ /area/lv624/lazarus/crashed_ship) "lv" = ( /obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "platingdmg1" }, @@ -670,7 +669,6 @@ phone_color = "yellow"; phone_id = "Engineering" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer{ icon_state = "orangecorner" }, @@ -1061,7 +1059,6 @@ /obj/item/tank/oxygen/red, /obj/item/storage/bag/trash, /obj/item/tool/screwdriver, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ icon_state = "platingdmg1" }, @@ -1253,7 +1250,6 @@ pixel_x = -3; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) "GQ" = ( @@ -1279,7 +1275,6 @@ /obj/item/ammo_magazine/pistol/heavy, /obj/item/ammo_magazine/pistol/heavy, /obj/item/clothing/accessory/storage/webbing, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer{ dir = 5; icon_state = "green" @@ -1959,7 +1954,6 @@ "Xa" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/almayer{ dir = 1; icon_state = "emerald" diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index 770d6a9347..f9dfdd8bf9 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -25,7 +25,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "gb" = ( diff --git a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm index 90b9f293b9..620c72915a 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm @@ -11,7 +11,6 @@ /obj/item/stack/sheet/mineral/platinum{ pixel_x = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -73,7 +72,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -141,7 +139,6 @@ /obj/item/weapon/gun/rifle/mar40{ pixel_y = -3 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -257,7 +254,6 @@ "U" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/lmg, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -289,7 +285,6 @@ pixel_y = 6 }, /obj/effect/landmark/crap_item, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "vault" diff --git a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm index c76947ab37..f4da3f1594 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm @@ -7,7 +7,6 @@ /obj/item/stack/sheet/mineral/sandstone{ amount = 50 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -51,7 +50,6 @@ /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ icon_state = "dark" }, @@ -80,7 +78,6 @@ "s" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, @@ -102,7 +99,6 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -207,7 +203,6 @@ /obj/item/stack/sheet/mineral/iron{ amount = 5 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "dark" }, diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index e03bf8cdcb..2b39ff6c17 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -121,7 +121,6 @@ "afi" = ( /obj/structure/machinery/light, /obj/structure/closet/l3closet/scientist, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -260,7 +259,6 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -326,7 +324,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "alD" = ( @@ -610,7 +607,6 @@ /area/varadero/interior_protected/vessel) "avI" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "avX" = ( @@ -863,12 +859,6 @@ icon_state = "floor6" }, /area/varadero/interior_protected/vessel) -"aCo" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "aCz" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva{ @@ -946,7 +936,6 @@ pixel_x = 8; pixel_y = 10 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/administration) "aDZ" = ( @@ -1099,7 +1088,6 @@ pixel_x = -3; pixel_y = 6 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) "aHu" = ( @@ -1319,12 +1307,6 @@ /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aPQ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "aPU" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -1350,7 +1332,6 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "snow_mat" }, @@ -1366,13 +1347,6 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/lz2_near) -"aQR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "aQY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1715,7 +1689,6 @@ /area/varadero/interior/security) "baN" = ( /obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/close, /obj/item/trash/wy_chips_pepper, /turf/open/floor/shiva{ icon_state = "floor3" @@ -1802,7 +1775,6 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "bez" = ( @@ -1810,7 +1782,6 @@ dir = 4 }, /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -1830,7 +1801,6 @@ dir = 4 }, /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 4; icon_state = "red" @@ -1938,7 +1908,6 @@ /obj/item/trash/cigbutt{ pixel_y = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -1982,7 +1951,6 @@ /area/varadero/exterior/monsoon) "bjP" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -2283,7 +2251,6 @@ pixel_y = 7 }, /obj/effect/spawner/random/powercell, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -2935,13 +2902,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "bSj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -3038,7 +2998,6 @@ pixel_x = -3; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -3467,7 +3426,6 @@ layer = 3.1 }, /obj/structure/closet/secure_closet/scientist, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "purple" @@ -3520,10 +3478,6 @@ dir = 1 }, /area/varadero/interior/research) -"clA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/varadero/interior/dock_control) "clD" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/shiva{ @@ -3713,7 +3667,6 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purple" @@ -4017,7 +3970,6 @@ /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1; icon_state = "wred" @@ -5028,19 +4980,11 @@ icon_state = "wood" }, /area/varadero/interior/library) -"djC" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "djH" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/administration) "djP" = ( @@ -5234,7 +5178,6 @@ "dpO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/evidencebag, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 4; icon_state = "red" @@ -5298,7 +5241,6 @@ pixel_x = 8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -5553,7 +5495,6 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "dGh" = ( -/obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/crate/hydroponics/prespawned, /turf/open/floor/shiva{ icon_state = "blue" @@ -5961,7 +5902,6 @@ /area/varadero/interior/library) "dWl" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 8; icon_state = "yellowfull" @@ -6043,7 +5983,6 @@ pixel_y = 7 }, /obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -6110,7 +6049,6 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "eaN" = ( -/obj/effect/landmark/objective_landmark/close, /obj/structure/closet/crate/ammo/alt, /obj/item/ammo_magazine/rifle/m4ra{ pixel_x = 5 @@ -6421,7 +6359,6 @@ /area/varadero/interior/medical) "ekg" = ( /obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ dir = 1; icon_state = "yellow" @@ -6644,7 +6581,6 @@ "esz" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/shotgun, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "red" @@ -6726,11 +6662,6 @@ /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eul" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/varadero/interior/chapel) "euH" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar/red, @@ -7283,7 +7214,6 @@ pixel_x = -6; pixel_y = 6 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -7982,13 +7912,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/security) -"fgS" = ( -/obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -8076,7 +7999,6 @@ pixel_x = -5; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -8120,7 +8042,6 @@ /area/varadero/interior/library) "fjK" = ( /obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -8931,7 +8852,6 @@ /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "fMP" = ( -/obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva{ dir = 1; @@ -9123,7 +9043,6 @@ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -9487,7 +9406,6 @@ /area/varadero/exterior/pontoon_beach) "gdN" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/varadero/interior/library) "gdO" = ( @@ -9780,7 +9698,6 @@ pixel_x = -3; pixel_y = 10 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) "gkw" = ( @@ -9843,7 +9760,6 @@ /area/varadero/interior_protected/vessel) "gmE" = ( /obj/structure/closet/jcloset, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 8; icon_state = "yellowfull" @@ -10052,11 +9968,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"guz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) "guE" = ( /obj/structure/largecrate/random, /turf/open/floor/shiva{ @@ -10139,7 +10050,6 @@ "gwW" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/sling, -/obj/effect/landmark/objective_landmark/science, /obj/structure/machinery/light, /turf/open/floor/shiva{ icon_state = "floor3" @@ -10261,7 +10171,6 @@ /obj/item/weapon/wirerod{ pixel_x = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "blue" }, @@ -10406,7 +10315,6 @@ dir = 8; health = 80 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -10460,13 +10368,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gHT" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) "gIB" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva{ @@ -10545,7 +10446,6 @@ pixel_x = -8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "gMi" = ( @@ -10896,7 +10796,6 @@ pixel_x = 8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ pixel_x = 9; pixel_y = 25 @@ -10949,7 +10848,6 @@ /area/varadero/interior/technical_storage) "haV" = ( /obj/structure/closet/crate/secure, -/obj/effect/landmark/objective_landmark/medium, /obj/item/trash/kepler, /turf/open/floor/shiva{ icon_state = "floor3" @@ -11082,7 +10980,6 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 1 }, @@ -11230,7 +11127,6 @@ /area/varadero/interior/medical) "hlp" = ( /obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "multi_tiles" }, @@ -11451,7 +11347,6 @@ "hty" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/large_holster/ceremonial_sword/full, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/security) "htP" = ( @@ -11474,7 +11369,6 @@ pixel_x = -7; pixel_y = 13 }, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/varadero/interior/records) "huf" = ( @@ -11780,7 +11674,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "purple" }, @@ -11920,7 +11813,6 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) "hLE" = ( @@ -12156,23 +12048,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior_protected/vessel) -"hRv" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"hTd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -12540,7 +12415,6 @@ pixel_y = 3 }, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 5; icon_state = "purple" @@ -12741,7 +12615,6 @@ /area/varadero/interior/records) "imZ" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "multi_tiles" }, @@ -12974,7 +12847,6 @@ /area/varadero/interior/cargo) "ivg" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "multi_tiles" }, @@ -13013,13 +12885,6 @@ icon_state = "red" }, /area/varadero/interior/security) -"iwc" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, @@ -13056,7 +12921,6 @@ /obj/item/storage/pill_bottle/kelotane/skillless{ pixel_x = -5 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "iwT" = ( @@ -13284,7 +13148,6 @@ /area/varadero/interior/chapel) "iDS" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -13983,7 +13846,6 @@ /area/varadero/interior/maintenance) "jai" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ dir = 6; icon_state = "red" @@ -14655,7 +14517,6 @@ /obj/item/ashtray/bronze{ icon_state = "ashtray_half_br" }, -/obj/effect/landmark/objective_landmark/medium, /obj/item/weapon/gun/lever_action/r4t, /obj/item/ammo_magazine/handful/lever_action, /turf/open/floor/carpet, @@ -15132,13 +14993,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/administration) -"jMK" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "purple" - }, -/area/varadero/interior/research) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -15376,11 +15230,6 @@ icon_state = "floor3" }, /area/varadero/interior/security) -"jWA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/interior/plastic, -/area/varadero/interior_protected/caves/digsite) "jXn" = ( /obj/structure/bed/chair{ icon_state = "chair_alt"; @@ -15928,7 +15777,6 @@ pixel_x = 8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/varadero/interior/research) "kpN" = ( @@ -15965,13 +15813,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kqE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, @@ -16417,7 +16258,6 @@ /area/varadero/interior_protected/maintenance/south) "kDO" = ( /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, /obj/item/trash/chunk, /turf/open/floor/shiva{ icon_state = "floor3" @@ -16957,10 +16797,6 @@ default_name = "shallow ocean" }, /area/varadero/exterior/farocean) -"kWj" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/carpet, -/area/varadero/interior/bunks) "kWB" = ( /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) @@ -17100,14 +16936,6 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/comms4) -"lbi" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) "lbr" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva{ @@ -17233,11 +17061,6 @@ icon_state = "asteroidwarning" }, /area/varadero/exterior/lz1_near) -"leT" = ( -/obj/structure/machinery/conveyor, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/varadero/interior/cargo) "leU" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/icefloor{ @@ -17342,7 +17165,6 @@ /area/varadero/exterior/monsoon) "liE" = ( /obj/structure/closet/crate/secure/weapon, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 9; icon_state = "red" @@ -18187,7 +18009,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /obj/structure/surface/rack, /turf/open/floor/shiva{ dir = 10; @@ -18200,7 +18021,6 @@ desc = "The beaker stares at you lecherously. Its contents... irresistible."; pixel_y = 7 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -18651,7 +18471,6 @@ /area/varadero/exterior/lz1_near) "lYA" = ( /obj/structure/closet/secure_closet/medical2, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -18915,7 +18734,6 @@ pixel_x = -6; pixel_y = 2 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/varadero/interior/administration) "mey" = ( @@ -19035,7 +18853,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 1; icon_state = "purple" @@ -20038,7 +19855,6 @@ /area/varadero/interior/maintenance/research) "mQh" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "multi_tiles" }, @@ -20238,7 +20054,6 @@ }, /area/varadero/exterior/pool) "mXi" = ( -/obj/effect/landmark/objective_landmark/far, /turf/open/shuttle/elevator, /area/varadero/interior/records) "mXs" = ( @@ -20496,12 +20311,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"neJ" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "neU" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -20741,7 +20550,6 @@ dir = 4 }, /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "snow_mat" }, @@ -20997,7 +20805,6 @@ /area/varadero/exterior/lz2_near) "nBj" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 1; icon_state = "yellow" @@ -22135,7 +21942,6 @@ /area/varadero/interior/maintenance/north) "okB" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "purple" }, @@ -22675,7 +22481,6 @@ /area/varadero/interior/hall_SE) "oCy" = ( /obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 6; icon_state = "red" @@ -22858,7 +22663,6 @@ /area/varadero/interior_protected/vessel) "oKi" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/medium, /obj/structure/machinery/light{ dir = 1 }, @@ -22956,7 +22760,6 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "oMg" = ( -/obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) @@ -23011,7 +22814,6 @@ /area/varadero/interior/cargo) "oPr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva{ icon_state = "redfull" }, @@ -23061,7 +22863,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva{ icon_state = "multi_tiles" @@ -23093,7 +22894,6 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/device/taperecorder, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 10; icon_state = "blue" @@ -23273,7 +23073,6 @@ pixel_x = 16; pixel_y = 24 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -23534,7 +23333,6 @@ /area/varadero/exterior/eastbeach) "phd" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "red" @@ -23670,7 +23468,6 @@ "plc" = ( /obj/structure/surface/rack, /obj/item/clipboard, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 4; icon_state = "purple" @@ -23745,7 +23542,6 @@ pixel_x = 5; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "bluefull" @@ -23882,7 +23678,6 @@ /area/varadero/interior/court) "pqH" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 1; icon_state = "blue" @@ -24097,7 +23892,6 @@ pixel_x = 6; pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/close, /obj/structure/surface/table, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" @@ -24281,7 +24075,6 @@ pixel_x = -3 }, /obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -24453,7 +24246,6 @@ /area/varadero/interior/library) "pJZ" = ( /obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 1; icon_state = "blue" @@ -24503,7 +24295,6 @@ }, /area/varadero/interior/administration) "pMe" = ( -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 4; icon_state = "multi_tiles" @@ -24849,7 +24640,6 @@ /obj/item/broken_device{ desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 4; icon_state = "purple" @@ -25383,12 +25173,6 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"qoy" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) "qoE" = ( /turf/open/floor{ dir = 5; @@ -25510,13 +25294,6 @@ icon_state = "floor3" }, /area/varadero/interior/security) -"qtr" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -25944,7 +25721,6 @@ /area/varadero/interior/medical) "qDw" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 10; icon_state = "red" @@ -26085,13 +25861,6 @@ "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qJF" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "qKb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -26242,7 +26011,6 @@ pixel_x = 6; pixel_y = -4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -26512,7 +26280,6 @@ /area/varadero/interior/security) "qUj" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -26543,7 +26310,6 @@ dir = 8; layer = 2.991 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -27395,7 +27161,6 @@ pixel_x = 2; pixel_y = 7 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "purplefull" @@ -27412,7 +27177,6 @@ pixel_x = 6; pixel_y = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 4; icon_state = "purple" @@ -27632,14 +27396,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior_protected/vessel) -"rFj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) "rFv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs, @@ -28043,7 +27799,6 @@ pixel_x = -8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "rSX" = ( @@ -28132,7 +27887,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 1; icon_state = "purple" @@ -28593,11 +28347,6 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/comms4) -"skY" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) "slw" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/floor/plating/icefloor{ @@ -28773,7 +28522,6 @@ "srX" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/tools/full, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -29432,7 +29180,6 @@ /area/varadero/interior/mess) "sJB" = ( /obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 9; icon_state = "red" @@ -30338,7 +30085,6 @@ pixel_x = -8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 1; icon_state = "blue" @@ -30760,7 +30506,6 @@ "tFX" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/ammo_box/magazine/shotgun/buckshot, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 8; icon_state = "blue" @@ -30952,7 +30697,6 @@ pixel_x = 7; pixel_y = 3 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) "tNT" = ( @@ -30998,7 +30742,6 @@ /obj/item/device/camera{ pixel_y = 5 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "bluefull" @@ -31425,7 +31168,6 @@ dir = 4 }, /obj/structure/closet/radiation, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "purple" }, @@ -31439,7 +31181,6 @@ /area/varadero/exterior/monsoon) "udg" = ( /obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 1; icon_state = "blue" @@ -31715,7 +31456,6 @@ pixel_x = 8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/security) "unH" = ( @@ -31830,7 +31570,6 @@ /area/varadero/interior/maintenance) "uqU" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/varadero/interior/beach_bar) "uqW" = ( @@ -31957,15 +31696,6 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uvX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "uww" = ( /turf/open/floor/shiva{ icon_state = "yellow" @@ -32058,13 +31788,6 @@ icon_state = "yellow" }, /area/varadero/interior/disposals) -"uzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) "uAt" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -32328,7 +32051,6 @@ /area/varadero/interior/hall_SE) "uMu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/varadero/interior/records) "uMx" = ( @@ -33450,7 +33172,6 @@ pixel_x = -8; pixel_y = 11 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 5; icon_state = "red" @@ -33683,12 +33404,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/research) -"vBq" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) "vBC" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -34016,7 +33731,6 @@ pixel_x = 7; pixel_y = 2 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "bluefull" @@ -34349,7 +34063,6 @@ pixel_x = -3; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/carpet, /area/varadero/interior/research) "vUx" = ( @@ -34556,12 +34269,6 @@ icon_state = "white" }, /area/varadero/interior/toilets) -"vZz" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -34731,7 +34438,6 @@ /area/varadero/interior/records) "wdX" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva{ dir = 4; icon_state = "blue" @@ -35077,7 +34783,6 @@ dir = 4 }, /obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/far, /obj/item/trash/crushed_cup, /turf/open/floor/shiva{ icon_state = "floor3" @@ -35362,7 +35067,6 @@ /area/varadero/interior/hall_SE) "wvK" = ( /obj/structure/closet/crate/freezer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -35425,7 +35129,6 @@ icon_state = "chestdrawer"; pixel_x = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -35844,7 +35547,6 @@ "wOS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/evidencebag, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -36052,7 +35754,6 @@ pixel_x = 8; pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /obj/structure/machinery/light/small{ dir = 1 }, @@ -36532,7 +36233,6 @@ pixel_x = 6; pixel_y = 18 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ dir = 8; icon_state = "blue" @@ -36549,12 +36249,6 @@ "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqy" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "xqG" = ( /obj/structure/mirror{ pixel_x = -32 @@ -36962,14 +36656,6 @@ default_name = "deep ocean" }, /area/varadero/exterior/farocean) -"xBO" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_SE) "xBS" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor{ @@ -36989,7 +36675,6 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) "xCJ" = ( -/obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, @@ -37493,7 +37178,6 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/objective_landmark/medium, /obj/structure/machinery/storm_siren{ pixel_y = 5 }, @@ -38068,7 +37752,6 @@ pixel_x = -8; pixel_y = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva{ icon_state = "floor3" }, @@ -40028,7 +39711,7 @@ efw efw awu fay -jMK +uuN cqB hBX fay @@ -40186,7 +39869,7 @@ xCn oPQ xCn xCn -hRv +xCn xCn xCn xCn @@ -40212,7 +39895,7 @@ efw fay wIr mym -qoy +sDM fay cJa hDA @@ -40919,7 +40602,7 @@ xwG xCq kXQ kXQ -neJ +efw efw fND uVo @@ -41120,7 +40803,7 @@ wIr qQF ltW cNT -aPQ +ltW qQF ltW ltW @@ -41304,7 +40987,7 @@ biF yba pVl xDf -rFj +wmg izs vku izs @@ -42209,7 +41892,7 @@ jQM sQn bZg giq -bSd +izs izs hfD clv @@ -42386,7 +42069,7 @@ efw efw jGA efw -neJ +efw qMY byU aoE @@ -42729,7 +42412,7 @@ yks qul uHY xCn -hRv +xCn xCn qHc xCn @@ -43618,7 +43301,7 @@ ykc uZY ykc cAw -lbi +cAw qNC rSx ykc @@ -43857,7 +43540,7 @@ qul qul fay tYT -vBq +iCy iCy jnq fay @@ -44370,7 +44053,7 @@ xCn xCn xCn xCn -hRv +xCn xCn xCn xCn @@ -44409,7 +44092,7 @@ dlv rNm tDo uQa -xqy +uQa vYW vYW uQa @@ -44720,7 +44403,7 @@ iZx xVC wGl oke -fgS +fjK wGl ykc fuF @@ -44910,7 +44593,7 @@ gKw vLt miU vBC -gHT +gKw qul qul qul @@ -45987,7 +45670,7 @@ fjM jeO vTd vrw -leT +vrw vrw jeO vrw @@ -46895,7 +46578,7 @@ rtP aqk okf wwq -qtr +ukX wxf hyr cTV @@ -47860,7 +47543,7 @@ coc bIt nRP kvG -guz +thn thn vCE jCA @@ -48006,7 +47689,7 @@ cwQ kzE fyP uEE -eul +gNb bLB xWY hvO @@ -48172,7 +47855,7 @@ weG xAs omj pJf -djC +pJp weG fzx hyr @@ -48541,7 +48224,7 @@ erK qAp bgE hyr -qtr +ukX weG gnm hyr @@ -48860,7 +48543,7 @@ mPk itL aQq boI -clA +qaE miR nqQ tlE @@ -48941,7 +48624,7 @@ cbe stv hwa hwa -uvX +aQc qqA qqA qqA @@ -49271,7 +48954,7 @@ qAp hyr okf weG -qtr +ukX hyr sKC xMs @@ -49686,7 +49369,7 @@ lhm xgG gfs sJZ -vZz +tEJ cNu kyG wHu @@ -50761,7 +50444,7 @@ vcd lFS bRQ lFS -uzs +lFS lFS lFS fAs @@ -50861,7 +50544,7 @@ lTR qwQ eDY lZR -aCo +asx lZR caD lTR @@ -52212,7 +51895,7 @@ qqA sKN qqA qqA -qJF +bft qqA gjs qqA @@ -52936,7 +52619,7 @@ yil yil yil gkF -iwc +pZD aQc yil qqA @@ -52964,7 +52647,7 @@ fkE sJZ tEJ cNu -xBO +qnm bkM ngg tsz @@ -54607,7 +54290,7 @@ fvw tEJ ozC qIi -vZz +tEJ ezt xxk toU @@ -55684,7 +55367,7 @@ ydx kxW pbd mnm -kWj +vNu wkM thY mPI @@ -56964,7 +56647,7 @@ oBQ frQ gFx vZm -skY +qus mTD gFx gFx @@ -57335,7 +57018,7 @@ cdb wjV cdb cdb -kqE +wXu cdb rRq usB @@ -59840,7 +59523,7 @@ kCA tlT mYd iht -hTd +iIC rKL tlT kCA @@ -59879,7 +59562,7 @@ uoO mnc kCT mnc -aQR +xMq shP gBV wVf @@ -75020,7 +74703,7 @@ gWL kKS eDR djP -jWA +eyL qCT bsf ncv @@ -75201,7 +74884,7 @@ bsf qCT gMp eyL -jWA +eyL qCT bsf bsf diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 334c7e71f8..328e450fba 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -331,7 +331,6 @@ /obj/structure/closet/secure_closet/chemical{ req_access = null }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "abi" = ( @@ -373,7 +372,6 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "abs" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "abt" = ( @@ -387,7 +385,6 @@ "abu" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -494,7 +491,6 @@ /obj/structure/closet/wardrobe/grey, /obj/effect/landmark/wo_supplies/storage/mines, /obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -982,7 +978,6 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -1155,7 +1150,6 @@ /area/strata/ug/interior/jungle/deep/minehead) "adx" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -1188,7 +1182,6 @@ /area/strata/ug/interior/jungle/deep/structures/res) "adB" = ( /obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -1342,7 +1335,6 @@ "adV" = ( /obj/structure/filingcabinet, /obj/structure/window/reinforced/tinted, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -1426,11 +1418,6 @@ icon_state = "fake_wood" }, /area/strata/ug/interior/jungle/deep/minehead) -"aeg" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin1) "aeh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -1506,14 +1493,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"aet" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) "aeu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -1656,7 +1635,6 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "aeV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "aeW" = ( @@ -2531,7 +2509,6 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ahq" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -2678,7 +2655,6 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -3114,7 +3090,6 @@ /area/strata/ag/exterior/paths/cabin_area) "ajd" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -3198,7 +3173,6 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/eggplantparm, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "cyan2" @@ -3558,7 +3532,6 @@ /area/strata/ag/interior/dorms/flight_control) "akp" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -3703,7 +3676,6 @@ /area/strata/ug/interior/jungle/deep/structures/res) "akM" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -3816,7 +3788,6 @@ "alc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/meatballspagetti, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -4160,7 +4131,6 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -4525,7 +4495,6 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -4594,7 +4563,6 @@ /area/strata/ag/interior/research_decks/security) "anB" = ( /obj/item/reagent_container/food/snacks/carpmeat, -/obj/effect/landmark/objective_landmark/close, /obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata{ icon_state = "red1" @@ -5100,9 +5068,6 @@ "apu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, /turf/open/floor/strata{ icon_state = "red1" }, @@ -5266,7 +5231,6 @@ "apU" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/kitchen/knife, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "white_cyan1" }, @@ -5517,7 +5481,6 @@ /area/strata/ag/interior/outpost/security) "aqE" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -5655,7 +5618,6 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ara" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -5784,7 +5746,6 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -5798,7 +5759,6 @@ /area/strata/ag/interior/outpost/security) "arx" = ( /obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -5861,7 +5821,6 @@ }, /area/strata/ag/interior/outpost/security) "arF" = ( -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -6608,7 +6567,6 @@ dir = 8 }, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -7378,7 +7336,6 @@ /area/strata/ag/interior/outpost/security) "avZ" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -8103,7 +8060,6 @@ /area/strata/ug/interior/jungle/deep/structures/res) "aye" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "red1" }, @@ -8718,7 +8674,6 @@ /area/strata/ag/interior/outpost/engi) "aAh" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkyellowfull2" }, @@ -9733,7 +9688,6 @@ "aDD" = ( /obj/structure/closet, /obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "multi_tiles" }, @@ -10996,7 +10950,6 @@ icon_state = "xgib2" }, /obj/item/tool/kitchen/utensil/pknife, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "white_cyan1" }, @@ -11464,7 +11417,6 @@ dir = 4 }, /obj/item/stack/sheet/plasteel/medium_stack, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -11555,7 +11507,6 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/close, /obj/item/prop/almayer/flight_recorder/colony{ pixel_x = -6; pixel_y = 10 @@ -11606,7 +11557,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -12243,7 +12193,6 @@ pixel_y = 2 }, /obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) "aLw" = ( @@ -13054,7 +13003,6 @@ /area/strata/ag/exterior/research_decks) "aNW" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -13309,7 +13257,6 @@ "aOG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/sodawater, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "darkyellowfull2" }, @@ -13332,7 +13279,6 @@ /area/strata/ag/interior/outpost/canteen) "aOL" = ( /obj/structure/closet/crate/science, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -13418,7 +13364,6 @@ /area/strata/ag/interior/dorms/south) "aPb" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -13486,7 +13431,6 @@ /obj/item/explosive/grenade/phosphorus, /obj/item/folder/red, /obj/item/ammo_box/magazine/shotgun/buckshot, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -14454,7 +14398,6 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -15099,7 +15042,6 @@ "aUK" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light/small, -/obj/effect/landmark/objective_landmark/medium, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) "aUM" = ( @@ -15109,7 +15051,6 @@ pixel_x = -24; start_charge = 0 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "multi_tiles" @@ -15165,14 +15106,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"aUY" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aUZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced/tinted, @@ -15305,16 +15238,6 @@ "aVm" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/interior/administration) -"aVn" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aVp" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -15576,7 +15499,6 @@ /area/strata/ag/exterior/paths/adminext) "aWB" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -15689,7 +15611,6 @@ dir = 1; pixel_y = 25 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "aXa" = ( @@ -16328,7 +16249,6 @@ /obj/structure/surface/rack, /obj/item/book/manual/engineering_construction, /obj/item/book/manual/engineering_hacking, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "orange_cover" }, @@ -17025,7 +16945,6 @@ dir = 1; pixel_y = 25 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bbN" = ( @@ -19697,7 +19616,6 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "blE" = ( @@ -19949,7 +19867,6 @@ /obj/structure/closet/bodybag, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/southresearch) "bmH" = ( @@ -20084,7 +20001,6 @@ /area/strata/ag/exterior/marsh/river) "bnq" = ( /obj/structure/largecrate/random, -/obj/effect/landmark/objective_landmark/medium, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) "bnr" = ( @@ -20111,13 +20027,6 @@ icon_state = "orange_cover" }, /area/strata/ag/exterior/north_lz_caves) -"bnw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/north_lz_caves) "bnx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -20286,7 +20195,6 @@ "bob" = ( /obj/structure/closet/secure_closet/medical2, /obj/item/clothing/gloves/latex, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "boc" = ( @@ -20375,7 +20283,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -20562,7 +20469,6 @@ "boQ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -21220,7 +21126,6 @@ /area/strata/ag/exterior/paths/southresearch) "brr" = ( /obj/structure/closet, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -21251,7 +21156,6 @@ /area/strata/ag/interior/administration) "brw" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -21793,7 +21697,6 @@ /area/strata/ag/exterior/paths/southresearch) "btx" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) "bty" = ( @@ -22249,7 +22152,6 @@ /area/strata/ag/interior/outpost/med) "bvj" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -23175,7 +23077,6 @@ /obj/structure/closet/secure_closet/medical3{ req_access = null }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -23639,7 +23540,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -23850,7 +23750,6 @@ "bDt" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "orange_cover" }, @@ -24087,7 +23986,6 @@ dir = 4; pixel_x = -24 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -24215,7 +24113,6 @@ /area/strata/ag/interior/outpost/med) "bGy" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -24637,13 +24534,11 @@ /area/strata/ug/interior/jungle/deep/minehead) "bJE" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ag/interior/administration) "bJF" = ( /obj/structure/filingcabinet, /obj/item/pamphlet/skill/medical, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata, /area/strata/ag/interior/administration) "bJG" = ( @@ -24783,7 +24678,6 @@ /area/strata/ag/interior/outpost/med) "bKM" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -24824,7 +24718,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -24999,7 +24892,6 @@ dir = 8; pixel_x = -24 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -25163,7 +25055,6 @@ dir = 8 }, /obj/item/storage/pill_bottle/antitox/skillless, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "multi_tiles" @@ -25210,7 +25101,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -26378,7 +26268,6 @@ /area/strata/ag/exterior/research_decks) "bYR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -26753,9 +26642,6 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -26979,7 +26865,6 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -27219,7 +27104,6 @@ /area/strata/ag/interior/outpost/med) "ceZ" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -27484,7 +27368,6 @@ /obj/item/dogtag, /obj/item/clothing/suit/armor/riot, /obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -28192,7 +28075,6 @@ pixel_x = 8; pixel_y = 6 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -28272,11 +28154,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/canteen) -"clU" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms/south) "clW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -28575,13 +28452,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/flight_control) -"coa" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "coc" = ( /obj/item/fuelCell, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -28788,7 +28658,6 @@ "cpE" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ icon_state = "red1" }, @@ -29161,7 +29030,6 @@ /area/strata/ag/interior/outpost/engi/drome) "csT" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "fake_wood" }, @@ -29687,12 +29555,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"cDt" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "cDL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, @@ -29730,14 +29592,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"cGL" = ( -/obj/structure/closet/bodybag, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, -/area/strata/ag/interior/outpost/med) "cHm" = ( /obj/item/weapon/gun/pistol/t73, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -29856,9 +29710,6 @@ /area/strata/ag/interior/outpost/engi/drome) "cTN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, /turf/open/floor/strata{ icon_state = "red1" }, @@ -29962,14 +29813,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"dcX" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/hive) @@ -30233,14 +30076,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dDr" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dDW" = ( /obj/structure/platform/strata{ dir = 8 @@ -30263,7 +30098,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -30715,14 +30549,6 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"exx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "exO" = ( /turf/open/floor/strata{ icon_state = "multi_tiles" @@ -30734,7 +30560,6 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/vials, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "purp2" }, @@ -30933,7 +30758,6 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -31096,12 +30920,6 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/tcomms) -"fbG" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "fch" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer0, @@ -31270,17 +31088,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"ftO" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "fuA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -31450,7 +31257,6 @@ /area/strata/ag/exterior/paths/cabin_area) "fEW" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/objective_landmark/close, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) "fFy" = ( @@ -31511,7 +31317,6 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -31617,12 +31422,6 @@ icon_state = "orange_tile" }, /area/strata/ag/interior/dorms) -"fXU" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/exterior/marsh/crash) "fXV" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -31725,7 +31524,6 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "ggr" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -31906,10 +31704,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"gpr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/asphalt/cement, -/area/strata/ag/interior/tcomms) "gpO" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -32254,11 +32048,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) -"gTZ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outpost/engi) "gUj" = ( /obj/item/storage/toolbox/electrical, /obj/structure/surface/rack, @@ -32406,7 +32195,6 @@ /obj/structure/mirror{ pixel_x = -29 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -32480,14 +32268,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"hmA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) "hni" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/large_holster/machete/full, @@ -32675,15 +32455,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"hHO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "hIb" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ @@ -33190,10 +32961,6 @@ icon_state = "plate" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"iBZ" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "iCt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -33352,13 +33119,6 @@ icon_state = "orange_cover" }, /area/strata/ag/exterior/vanyard) -"iQt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -33393,16 +33153,6 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"iUN" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "iVZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -33451,7 +33201,6 @@ dir = 8 }, /obj/item/storage/fancy/vials, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -33464,7 +33213,6 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "iZw" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -33514,14 +33262,6 @@ icon_state = "red1" }, /area/strata/ug/interior/jungle/deep/structures/engi) -"jeZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "jgX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ @@ -33585,7 +33325,6 @@ }, /obj/item/storage/pill_bottle/imidazoline, /obj/item/storage/pill_bottle/imidazoline, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -34183,7 +33922,6 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -34367,7 +34105,6 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -34716,7 +34453,6 @@ /area/strata/ug/interior/outpost/jung/dorms/admin3) "lkl" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ icon_state = "purp1" }, @@ -34753,12 +34489,6 @@ "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) -"loN" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "loP" = ( /obj/structure/filingcabinet, /turf/open/floor/strata{ @@ -35069,7 +34799,6 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh) "lPk" = ( -/obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata{ icon_state = "red1" @@ -35252,13 +34981,6 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/tcomms) -"mdK" = ( -/obj/item/storage/belt/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "mem" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -35523,7 +35245,6 @@ /area/strata/ag/exterior/paths/north_outpost) "msC" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -35775,18 +35496,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"mOj" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, @@ -35863,7 +35572,6 @@ pixel_y = 25 }, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -36006,16 +35714,6 @@ "noq" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"npy" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "npS" = ( /turf/open/floor/strata{ icon_state = "orange_cover" @@ -36157,7 +35855,6 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -36211,7 +35908,6 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "nOE" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -36426,15 +36122,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ogL" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "oiF" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -36637,19 +36324,11 @@ "oIi" = ( /obj/structure/filingcabinet, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"oIv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "oIx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/spawner/random/tool, @@ -36710,7 +36389,6 @@ /obj/structure/toilet{ dir = 8 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "orange_cover" }, @@ -36855,7 +36533,6 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -37767,11 +37444,6 @@ icon_state = "cement3" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"qsI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/deep/structures/engi) "qsZ" = ( /turf/open/floor/strata{ dir = 4; @@ -38066,7 +37738,6 @@ /obj/effect/decal/cleanable/blood/gibs/down, /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "qRj" = ( @@ -38074,7 +37745,6 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -38151,14 +37821,6 @@ "qWD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/restricted) -"qWQ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "qXN" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -38197,13 +37859,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rba" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -38614,13 +38269,6 @@ icon_state = "blue1" }, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"rMP" = ( -/obj/structure/closet/coffin, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) @@ -38660,15 +38308,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"rRx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -39271,7 +38910,6 @@ "taa" = ( /obj/structure/filingcabinet, /obj/structure/barricade/handrail/strata, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -39325,7 +38963,6 @@ /area/strata/ag/exterior/paths/southresearch) "tfB" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "orange_cover" }, @@ -39649,7 +39286,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -39769,7 +39405,6 @@ /obj/structure/toilet{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -40019,7 +39654,6 @@ /obj/structure/closet/secure_closet/personal, /obj/item/lightstick, /obj/item/lightstick, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ icon_state = "red1" }, @@ -40153,7 +39787,6 @@ /area/strata/ag/exterior/vanyard) "unO" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -40191,7 +39824,6 @@ }, /area/strata/ag/interior/tcomms) "urF" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -40544,13 +40176,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"uWO" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) "uWP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -40578,13 +40203,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/gen/bball) -"vaq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "vaW" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer1, @@ -40933,7 +40551,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -41128,7 +40745,6 @@ /area/strata/ag/interior/landingzone_checkpoint) "vMr" = ( /obj/structure/filingcabinet/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ icon_state = "red1" }, @@ -41310,7 +40926,6 @@ /area/strata/ag/interior/mountain) "whO" = ( /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) "wij" = ( @@ -41428,7 +41043,6 @@ }, /obj/structure/barricade/handrail/strata, /obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata{ icon_state = "blue1" }, @@ -41503,14 +41117,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"wBj" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) "wBI" = ( /obj/structure/bed{ icon_state = "abed" @@ -41623,7 +41229,6 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "wUa" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -42129,13 +41734,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xJb" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/vanyard) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, @@ -42156,12 +41754,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"xKs" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) "xKw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -42435,13 +42027,6 @@ "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ygz" = ( -/obj/structure/closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "yhJ" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -43121,7 +42706,7 @@ aac aac aac kSU -ftO +ahO vMr coO coO @@ -43510,7 +43095,7 @@ aac aac aac kSU -ygz +ahq ahP aiw cof @@ -45335,7 +44920,7 @@ bhO hQP bhO mpk -fXU +oeA oeA oeA oeA @@ -45460,7 +45045,7 @@ aac aac aac kSU -rba +ahq ahP aiA qwM @@ -45852,7 +45437,7 @@ aac aac kSU ahO -coa +vMr coO coO coV @@ -47604,7 +47189,7 @@ aac crA cnO bjY -rRx +afE cnO cnO kRb @@ -49787,7 +49372,7 @@ cjw cov aLq cnA -clU +whO aXD cjw aac @@ -50567,14 +50152,14 @@ ckX aRK ckX cnA -clU +whO aXH cjw aac aac aac aac -bnw +tfB brn aYZ aWp @@ -55314,7 +54899,7 @@ aac aac sgG cIQ -gpr +ubN tRC sgG nJK @@ -55804,7 +55389,7 @@ aac aac aac adS -dcX +bRw bUV bRw vPi @@ -55868,7 +55453,7 @@ bFv dOO vtl opg -xJb +vtl dOO boH blJ @@ -59360,7 +58945,7 @@ bYJ bRZ bNS eFG -exx +eFG cuX frf iNf @@ -63073,7 +62658,7 @@ vlm oOB qOt uRy -xKs +xJD cuP hmf wsh @@ -63199,8 +62784,8 @@ bzH cdA cdA bDU -aet -aet +nOE +nOE nOE afM cck @@ -63237,7 +62822,7 @@ oKo aLQ aMX aOd -hHO +aPC aQQ aSc aTA @@ -63251,7 +62836,7 @@ bsy blh boY bsA -fbG +bTF byY bBY ryK @@ -64971,7 +64556,7 @@ ayw ayw ayw xvy -gTZ +bVM bVM bVM ast @@ -65377,10 +64962,10 @@ dgB aMX aGy cik -aVn +qRj aKD aLT -iUN +qRj aKD aPK qRj @@ -66166,7 +65751,7 @@ aPL aRf aYO aTI -aUY +taa aWR aYO aYK @@ -66174,7 +65759,7 @@ bds bfS biV blU -npy +bpF mnq bvj bzg @@ -66203,7 +65788,7 @@ vtp vYD vtp ykU -cGL +ykU vYD vtp sip @@ -66751,7 +66336,7 @@ aPO aRf bll bsK -aUY +taa aWR bll oSV @@ -67178,7 +66763,7 @@ nEU xmR vlm mCx -rMP +nsB vlm gbU hGd @@ -67522,7 +67107,7 @@ cdX ceI cfv cgg -iQt +cgS oSV aMb bfV @@ -67582,7 +67167,7 @@ aad aad aad iwH -wBj +mrz wXb hwI atI @@ -67877,7 +67462,7 @@ aac aac akR cdA -uWO +adG dEa dEa dEa @@ -68560,7 +68145,7 @@ iwH iwH dcc aYQ -aeg +fZe hwI ikG iwH @@ -68701,7 +68286,7 @@ bll afr aSk aRk -aVn +qRj aWV aYT apJ @@ -71225,7 +70810,7 @@ ccp aDk slL aFu -dDr +cjl ccp ccp awm @@ -73198,7 +72783,7 @@ vOs bvL bHH bzt -oIv +bWx vOs oeQ baA @@ -75069,7 +74654,7 @@ aac aac aUp aah -iBZ +bof aak ahZ ahZ @@ -77117,7 +76702,7 @@ cFp cxK xkj cxW -hmA +ugH ekh ekh uzb @@ -78792,7 +78377,7 @@ aad aad bnd abC -loN +bDn abC acy abC @@ -78989,7 +78574,7 @@ bnd abD abS bDn -loN +bDn acR bDn bDn @@ -82388,7 +81973,7 @@ piY vsy gih khT -ogL +kfm kfm scb uLl @@ -83180,7 +82765,7 @@ lZd gih vsy gdZ -cDt +vsy lZd gih sya @@ -84072,7 +83657,7 @@ bon bon adz aij -vaq +aeB ajD akf akK @@ -84732,7 +84317,7 @@ vsy vsy vsy vsy -qsI +gih ixD lZd tIv @@ -85257,7 +84842,7 @@ uux ati bAr uux -qWQ +aub axW uux aly @@ -86006,7 +85591,7 @@ aad aad aad uux -mOj +abF abV abF aYz @@ -89157,7 +88742,7 @@ acp bAr bAr uux -jeZ +aub bXQ uux aly @@ -89349,7 +88934,7 @@ bAr uux arb arb -mdK +arb arb uux uux diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index fb842c754d..bf7450f45b 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -17779,9 +17779,6 @@ /area/almayer/squads/alpha) "bti" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel{ - dir = 4 - }, /turf/open/floor/almayer{ dir = 10; icon_state = "silver" @@ -30276,7 +30273,6 @@ }, /area/almayer/hull/upper_hull/u_a_p) "dnm" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer, /obj/structure/machinery/light{ dir = 8 }, @@ -37403,7 +37399,7 @@ name = "Brig Cells Telephone"; phone_category = "Almayer"; phone_id = "Brig Cells"; - pixel_x = 15; + pixel_x = 15 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) @@ -39569,7 +39565,6 @@ /area/almayer/engineering/engine_core) "hgB" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel, /turf/open/floor/almayer{ dir = 8; icon_state = "silvercorner" @@ -43184,7 +43179,6 @@ /area/almayer/lifeboat_pumps/south1) "iLf" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, /turf/open/floor/almayer, /area/almayer/command/computerlab) "iLh" = ( @@ -55502,7 +55496,6 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "nYf" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer, /turf/open/floor/almayer{ icon_state = "silverfull" }, @@ -61282,7 +61275,6 @@ /area/almayer/squads/charlie_delta_shared) "qyZ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/view_objectives, /obj/structure/machinery/light{ dir = 1 }, @@ -61859,7 +61851,6 @@ /area/almayer/command/airoom) "qLV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, /turf/open/floor/almayer{ dir = 4; icon_state = "silver" @@ -63485,12 +63476,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"rxO" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/computerlab) "rxV" = ( /obj/structure/barricade/handrail, /obj/structure/largecrate/supply/generator, @@ -63877,7 +63862,6 @@ }, /area/almayer/squads/delta) "rEL" = ( -/obj/structure/machinery/cm_vending/gear/intelligence_officer, /turf/open/floor/almayer{ icon_state = "silverfull" }, @@ -64530,7 +64514,7 @@ name = "Requisition Telephone"; phone_category = "Almayer"; phone_id = "Requisition"; - pixel_y = 30; + pixel_y = 30 }, /turf/open/floor/almayer{ dir = 5; @@ -73513,9 +73497,6 @@ /obj/structure/machinery/computer/ares_console{ pixel_x = 9 }, -/obj/structure/machinery/computer/view_objectives{ - pixel_x = -9 - }, /turf/open/floor/almayer/no_build{ icon_state = "plating" }, @@ -79099,9 +79080,6 @@ dir = 8 }, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/view_objectives{ - dir = 4 - }, /turf/open/floor/almayer{ dir = 8; icon_state = "silver" @@ -119581,7 +119559,7 @@ nYf rEL dnm rEL -rxO +rEL aHq cnE liJ diff --git a/maps/predship/huntership.dmm b/maps/predship/huntership.dmm index f8b3028a68..971fefa58f 100644 --- a/maps/predship/huntership.dmm +++ b/maps/predship/huntership.dmm @@ -1807,8 +1807,7 @@ name = "Armory Shutters"; needs_power = 0; pixel_x = 24; - req_one_access_txt = "392"; - needs_power = 0 + req_one_access_txt = "392" }, /turf/open/floor/corsat{ dir = 1;