Merge pull request #8947 from VOREStation/upstream-merge-7593

[MIRROR] Increases number of things that survive overmap ztransit
This commit is contained in:
Novacat
2020-09-01 00:52:36 -04:00
committed by GitHub
+21
View File
@@ -47,8 +47,29 @@ proc/get_deepspace(x,y)
for(var/atom/movable/AM in contents)
if(!AM.lost_in_space())
return FALSE
if(has_buckled_mobs())
for(var/mob/M in buckled_mobs)
if(!M.lost_in_space())
return FALSE
return TRUE
/obj/item/device/uav/lost_in_space()
if(state == 1)
return FALSE
return ..()
/obj/machinery/power/supermatter/lost_in_space()
return FALSE
/obj/singularity/lost_in_space()
return FALSE
/obj/vehicle/lost_in_space()
if(load && !load.lost_in_space())
return FALSE
return ..()
/mob/lost_in_space()
return isnull(client)