From 0500515a411ac93af1bd3d3bec6f9fc8fe14d531 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 8 Mar 2020 15:47:36 -0400 Subject: [PATCH] Fix missing incorporeal floatyness --- code/modules/multiz/movement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index 4918a8a61c..fdcd6c7a64 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -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() \ No newline at end of file + ground.break_tile()