mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Merge pull request #7593 from Cyantime/patch-3
Increases number of things that survive overmap ztransit
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user