From f1bd34846bd44e34bdaa0aea977ae2107c4d75ef Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 14 Oct 2019 22:13:27 -0400 Subject: [PATCH] Properly fixes shadekin phase plummeting --- code/game/objects/effects/step_triggers.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm index 40c3f752e9..6119138121 100644 --- a/code/game/objects/effects/step_triggers.dm +++ b/code/game/objects/effects/step_triggers.dm @@ -229,6 +229,10 @@ var/global/list/tele_landmarks = list() // Terrible, but the alternative is loop if(isobserver(A)) A.forceMove(T) // Harmlessly move ghosts. return + //VOREStation Edit Start + if(!(A.can_fall())) + return // Phased shifted kin should not fall + //VOREStation Edit End A.forceMove(T) // Living things should probably be logged when they fall...