No verbose cantouch check when not climbable

This commit is contained in:
Hubblenaut
2015-12-16 02:28:19 +01:00
parent 89431c2dc5
commit e10393324d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -69,7 +69,7 @@
return ..()
/obj/structure/proc/can_climb(var/mob/living/user, post_climb_check=0)
if (!can_touch(user) || !climbable || (!post_climb_check && (user in climbers)))
if (!climbable || !can_touch(user) || (!post_climb_check && (user in climbers)))
return 0
if (!user.Adjacent(src))