From a50370a6eca36c2e56313c16f44ccc087deefb5b Mon Sep 17 00:00:00 2001 From: Heroman Date: Sat, 5 Nov 2022 16:08:36 +1000 Subject: [PATCH] Also excludes landing areas on Tether and RP --- maps/groundbase/groundbase_things.dm | 5 +++++ maps/tether/tether_things.dm | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/maps/groundbase/groundbase_things.dm b/maps/groundbase/groundbase_things.dm index f1a1dfb8a0..9bcd693cc6 100644 --- a/maps/groundbase/groundbase_things.dm +++ b/maps/groundbase/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 diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index 8ae3ab2846..13c1b6cec0 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -286,7 +286,7 @@ // Shelter Capsule extra restrictions /datum/map_template/shelter/New() ..() - banned_areas += list(/area/tether/surfacebase/fish_farm, /area/tether/surfacebase/public_garden) + banned_areas += list(/area/tether/surfacebase/fish_farm, /area/tether/surfacebase/public_garden, /area/tether/surfacebase/tram) // // ### Wall Machines On Full Windows ###