From f6586554b15d5aebc6fcbd1efa21d8b10fd60fd0 Mon Sep 17 00:00:00 2001 From: Heroman Date: Mon, 15 Apr 2019 04:19:09 +1000 Subject: [PATCH] Fixes moving items downstairs, virgo edition --- code/modules/multiz/movement_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/multiz/movement_vr.dm b/code/modules/multiz/movement_vr.dm index 4ed62e2582..7bdb8c74e3 100644 --- a/code/modules/multiz/movement_vr.dm +++ b/code/modules/multiz/movement_vr.dm @@ -7,6 +7,10 @@ if(!A.CanPass(src, src.loc, 1, 0)) return FALSE Move(landing) + if(isliving(src)) + var/mob/living/L = src + if(L.pulling) + L.pulling.forceMove(landing) return 1 for(var/obj/O in loc)