From b20d5558cd9c8ff5a9dd9d4f038c9bfb18d9e024 Mon Sep 17 00:00:00 2001 From: HMBGERDO <61080616+HMBGERDO@users.noreply.github.com> Date: Tue, 27 Jun 2023 03:29:44 +0200 Subject: [PATCH] slowdown now applied only if pulled object has gravity (#21272) --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index e83cf63db5c..9d99b0e0538 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -3,7 +3,7 @@ . += ..() . += GLOB.configuration.movement.human_delay . += dna.species.movement_delay(src) - if(mob_has_gravity() && isobj(pulling)) + if(isobj(pulling) && has_gravity(pulling)) var/obj/pulled = pulling . += pulled.pull_speed