mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-31 09:08:30 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user