From 2ed79baef1cd1780269b1e41b8f8a5af4e6df1ac Mon Sep 17 00:00:00 2001 From: Casey Date: Sun, 6 Nov 2022 12:12:36 -0500 Subject: [PATCH] Merge pull request #14034 from Heroman3003/podfix Blocks creation of shelter pods in the Fish Farm and Public Garden --- maps/tether/tether_things.dm | 6 ++++++ maps/yw/submaps/rogue_mines/groundbase_things.dm | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index efb1376890..cb137963ad 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -320,6 +320,12 @@ /obj/machinery/camera/network/outside network = list(NETWORK_OUTSIDE) + +// Shelter Capsule extra restrictions +/datum/map_template/shelter/New() + ..() + banned_areas += list(/area/tether/surfacebase/fish_farm, /area/tether/surfacebase/public_garden, /area/tether/surfacebase/tram) + // // ### Wall Machines On Full Windows ### // To make sure wall-mounted machines placed on full-tile windows are clickable they must be above the window diff --git a/maps/yw/submaps/rogue_mines/groundbase_things.dm b/maps/yw/submaps/rogue_mines/groundbase_things.dm index f1a1dfb8a0..9bcd693cc6 100644 --- a/maps/yw/submaps/rogue_mines/groundbase_things.dm +++ b/maps/yw/submaps/rogue_mines/groundbase_things.dm @@ -97,3 +97,8 @@ VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/rocks) var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread s.set_up(5, 1, src) s.start() + +// Shelter Capsule extra restrictions +/datum/map_template/shelter/New() + ..() + banned_areas += list(/area/groundbase/level3/escapepad) \ No newline at end of file