mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-26 10:03:45 +00:00
Fixes crawling when standing. No more accidentally crawling when buckling.
This commit is contained in:
@@ -91,7 +91,7 @@ turf/attackby(obj/item/weapon/W as obj, mob/user as mob)
|
||||
return
|
||||
if(istype(O, /obj/screen))
|
||||
return
|
||||
if(user.restrained() || user.stat || user.stunned || user.paralysis)
|
||||
if(user.restrained() || user.stat || user.stunned || user.paralysis || (!user.lying && !istype(user, /mob/living/silicon/robot)))
|
||||
return
|
||||
if((!(istype(O, /atom/movable)) || O.anchored || !Adjacent(user) || !Adjacent(O) || !user.Adjacent(O)))
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user