From 6a2c3550a254d0674702cc2b7ef268d888a5b8d2 Mon Sep 17 00:00:00 2001 From: grungussuss <96586172+Sadboysuss@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:53:36 +0300 Subject: [PATCH] Smuggler satchel spawning is blacklisted in the "near station" area (#85248) ## About The Pull Request northstar has a lot of tiles in nearstation areas and smuggler satchels can spawn under them. closes https://github.com/tgstation/tgstation/issues/78304 ## Changelog :cl: grungussuss fix: smuggler satchels will no longer spawn in space /:cl: --- code/controllers/subsystem/minor_mapping.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/controllers/subsystem/minor_mapping.dm b/code/controllers/subsystem/minor_mapping.dm index 6acbbc1894e..4aed29be350 100644 --- a/code/controllers/subsystem/minor_mapping.dm +++ b/code/controllers/subsystem/minor_mapping.dm @@ -49,6 +49,8 @@ SUBSYSTEM_DEF(minor_mapping) ///List of areas where satchels should not be placed. var/list/blacklisted_area_types = list( /area/station/holodeck, + /area/space/nearstation, + /area/station/solars, ) while(turfs.len && satchel_amount > 0)