From 4a108d7a9a4762e4daeb20333b1ca401170e1f24 Mon Sep 17 00:00:00 2001 From: monster860 Date: Fri, 6 Mar 2020 04:40:22 -0500 Subject: [PATCH] fixes oopsie --- code/modules/mob/mob.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 43f4b82add..baab7ead40 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -724,14 +724,14 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0) set hidden = TRUE if(!canface()) return FALSE - if(pixel_y >= 16) + if(pixel_y <= 16) pixel_y++ /mob/verb/southshift() set hidden = TRUE if(!canface()) return FALSE - if(pixel_y <= -16) + if(pixel_y >= -16) pixel_y-- /mob/proc/IsAdvancedToolUser()//This might need a rename but it should replace the can this mob use things check