From b912fc901a081aeecd1db10ce9b7b3e1d1d805bb Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Mon, 15 Nov 2021 20:51:16 +0000 Subject: [PATCH] more banned areas (#17108) --- 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 41b651340f6..01e883aefab 100644 --- a/code/modules/mining/shelters.dm +++ b/code/modules/mining/shelters.dm @@ -9,7 +9,7 @@ . = ..() blacklisted_turfs = typecacheof(list(/turf/simulated/wall, /turf/simulated/mineral)) whitelisted_turfs = list() - banned_areas = typecacheof(/area/shuttle) + banned_areas = typecacheof(list(/area/shuttle, /area/holodeck/alphadeck)) /datum/map_template/shelter/proc/check_deploy(turf/deploy_location) var/affected = get_affected_turfs(deploy_location, centered=TRUE)