Fixes being unable to pull items down stairs

This commit is contained in:
Heroman
2019-04-07 12:31:14 +10:00
parent eee108393b
commit de18cf4ccd
+4
View File
@@ -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)