makes railings climbable both ways. without issues. in literally one single line

This commit is contained in:
deathride58
2022-06-06 01:31:51 -04:00
parent f121c874b2
commit 75983aca0d
+1 -1
View File
@@ -65,7 +65,7 @@
/obj/structure/proc/do_climb(atom/movable/A)
if(climbable)
density = FALSE
. = step(A,get_dir(A,src.loc))
. = step(A, (A.loc == loc ? dir : get_dir(A,src.loc)))
density = TRUE
/obj/structure/proc/climb_structure(mob/living/user)