mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-27 07:09:40 +01:00
Quality of life thing? (#31)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user