Fixes bluespace launchpads from not working in shuttles (#81421)

## About The Pull Request
Fixes #81314 
does what it says on the tin, I made the check more discriminatory by
checking supply and ferry areas instead (the two ways the crew can get
to centcom).
## Why It's Good For The Game
it is what it is
## Changelog
🆑
fix: You can now use bluespace launchpads from shuttles (except cargo
and ferry shuttles)
/🆑
This commit is contained in:
Singul0
2024-02-12 01:53:15 +01:00
committed by GitHub
parent 19780d7052
commit d1055414ce
+1 -1
View File
@@ -152,7 +152,7 @@
return "ERROR: Launchpad busy."
var/area/surrounding = get_area(src)
if(is_centcom_level(z) || istype(surrounding, /area/shuttle))
if(is_centcom_level(z) || istype(surrounding, /area/shuttle/supply) ||istype(surrounding, /area/shuttle/transport))
return "ERROR: Launchpad not operative. Heavy area shielding makes teleporting impossible."
return null