Miscellaneous Fixes Pt. 2

- Shelter Capsules deployed indoors will no longer destroy above turfs.
This commit is contained in:
Unknown
2019-09-12 00:32:56 -04:00
parent 2bce0a6bf4
commit c0f75d7e7b

View File

@@ -49,6 +49,8 @@
var/turf/deploy_location = get_turf(src)
var/status = template.check_deploy(deploy_location)
var/turf/above_location = GetAbove(deploy_location)
if(!isopenspace(above_location))
above_location = null
if(above_location && status == SHELTER_DEPLOY_ALLOWED)
status = template.check_deploy(above_location)