MultiZ Pulling Fixes

- Prevent pulling anchored stuff up stairs.
- Prevent pulling stuff up/down z-levels thru ladders.
This commit is contained in:
Leshana
2020-05-03 09:49:25 -04:00
parent 8b7a7050fe
commit 57285beb6c
2 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -159,7 +159,7 @@
A.forceMove(target)
if(isliving(A))
var/mob/living/L = A
if(L.pulling)
if(L.pulling && !L.pulling.anchored)
L.pulling.forceMove(target)
/obj/structure/stairs/proc/upperStep(var/turf/T)