Downwards transition happens on stair uncrossed

This commit is contained in:
atermonera
2021-03-04 20:13:07 -09:00
parent aab9d22f98
commit d844cd87d2
3 changed files with 30 additions and 17 deletions
-7
View File
@@ -52,13 +52,6 @@
/turf/simulated/open/Entered(var/atom/movable/mover, var/atom/oldloc)
..()
// Going down stairs from the topstair piece
var/obj/structure/stairs/top/T = locate(/obj/structure/stairs/top) in oldloc
if(T && mover.dir == turn(T.dir, 180) && T.check_integrity())
T.instant_stairs(mover)
return
mover.fall()
/turf/simulated/open/proc/BelowOpenUpdated(turf/T, atom/movable/AM, old_loc)