From de18cf4ccd711dc67f01fe2c216d64871c27e529 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sun, 7 Apr 2019 12:31:14 +1000 Subject: [PATCH] Fixes being unable to pull items down stairs --- code/modules/multiz/movement.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index e701cda021..ff51b0b202 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -280,6 +280,10 @@ // Detect if we made a silent landing. if(locate(/obj/structure/stairs) in landing) + if(isliving(src)) + var/mob/living/L = src + if(L.pulling) + L.pulling.forceMove(landing) return 1 else var/atom/A = find_fall_target(oldloc, landing)