Fix missing incorporeal floatyness

This commit is contained in:
Aronai Sieyes
2020-03-08 15:47:36 -04:00
committed by GitHub
parent 6eb9b4faf6
commit 0500515a41

View File

@@ -128,7 +128,7 @@
/mob/living/can_ztravel()
if(incapacitated())
return FALSE
return hovering
return (hovering || is_incorporeal())
/mob/living/carbon/human/can_ztravel()
if(incapacitated())
@@ -588,4 +588,4 @@
// And hurt the floor.
if(istype(hit_atom, /turf/simulated/floor))
var/turf/simulated/floor/ground = hit_atom
ground.break_tile()
ground.break_tile()