Quality of life thing? (#31)

This commit is contained in:
Enric Gabriel
2020-07-27 18:46:42 -03:00
committed by GitHub
parent 6da5ecffbc
commit a09178fde7
2 changed files with 20 additions and 20 deletions
+4 -4
View File
@@ -740,7 +740,7 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0)
set hidden = TRUE
if(!canface())
return FALSE
if(pixel_x <= 16)
if(pixel_x <= 32)
pixel_x++
is_shifted = TRUE
@@ -748,7 +748,7 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0)
set hidden = TRUE
if(!canface())
return FALSE
if(pixel_x >= -16)
if(pixel_x >= -32)
pixel_x--
is_shifted = TRUE
@@ -756,7 +756,7 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0)
set hidden = TRUE
if(!canface())
return FALSE
if(pixel_y <= 16)
if(pixel_y <= 32)
pixel_y++
is_shifted = TRUE
@@ -764,7 +764,7 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0)
set hidden = TRUE
if(!canface())
return FALSE
if(pixel_y >= -16)
if(pixel_y >= -32)
pixel_y--
is_shifted = TRUE