From 12d2a4d78fc2bb6cdd28ce0a4790db1d7c316863 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Wed, 13 Dec 2023 14:57:04 -0500 Subject: [PATCH] Allows creating new areas on the tram asteroid and surrounding mini-asteroids (#80260) ## About The Pull Request Exactly what it says on the tin. ## Why It's Good For The Game Allows people to expand rooms into the asteroid, or create new rooms within it. ## Changelog :cl: qol: The asteroid on Tramstation can now have areas expanded into or created within. /:cl: --- code/__HELPERS/areas.dm | 1 + code/game/area/areas/station/misc.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 383e8a425fc..7b21ee3f0ef 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -86,6 +86,7 @@ GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(/area/station/en // Ignore these areas and dont let people expand them. They can expand into them though var/static/list/blacklisted_areas = typecacheof(list( /area/space, + /area/station/asteroid, )) var/error = "" diff --git a/code/game/area/areas/station/misc.dm b/code/game/area/areas/station/misc.dm index 48d5793b522..fbbe0e8a512 100644 --- a/code/game/area/areas/station/misc.dm +++ b/code/game/area/areas/station/misc.dm @@ -31,3 +31,4 @@ requires_power = TRUE ambience_index = AMBIENCE_MINING area_flags = UNIQUE_AREA + outdoors = TRUE