From db8e0d75759d4bc9f355885206454e6a0a78b5a4 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:30:56 +0100 Subject: [PATCH] You can no longer deploy survival/fishing capsules by the holodeck and permanently brick it. (#87941) --- code/modules/mining/shelters.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/shelters.dm b/code/modules/mining/shelters.dm index 539854a3947..5a08b292022 100644 --- a/code/modules/mining/shelters.dm +++ b/code/modules/mining/shelters.dm @@ -17,7 +17,7 @@ /datum/map_template/shelter/New() . = ..() blacklisted_turfs = typecacheof(/turf/closed) - banned_areas = typecacheof(/area/shuttle) + banned_areas = typecacheof(list(/area/shuttle, /area/station/holodeck)) /datum/map_template/shelter/proc/check_deploy(turf/deploy_location, obj/item/survivalcapsule/capsule, ignore_flags = NONE) var/affected = get_affected_turfs(deploy_location, centered=TRUE)