mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
You can now take off clothes while on stasis
This commit is contained in:
@@ -98,7 +98,7 @@
|
||||
CtrlClickOn(A)
|
||||
return
|
||||
|
||||
if(incapacitated(ignore_restraints = 1))
|
||||
if(incapacitated(ignore_restraints = TRUE, ignore_stasis = TRUE))
|
||||
return
|
||||
|
||||
face_atom(A)
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
if(world.time <= usr.next_move)
|
||||
return TRUE
|
||||
|
||||
if(usr.incapacitated())
|
||||
if(usr.incapacitated(ignore_stasis = TRUE))
|
||||
return TRUE
|
||||
if(ismecha(usr.loc)) // stops inventory actions in a mech
|
||||
return TRUE
|
||||
|
||||
@@ -287,7 +287,7 @@
|
||||
return
|
||||
|
||||
///Is the mob incapacitated
|
||||
/mob/proc/incapacitated(ignore_restraints = FALSE, ignore_grab = FALSE, check_immobilized = FALSE)
|
||||
/mob/proc/incapacitated(ignore_restraints = FALSE, ignore_grab = FALSE, ignore_stasis = FALSE)
|
||||
return
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user