This commit is contained in:
kevinz000
2020-03-03 03:04:23 -07:00
parent 7ade79ce80
commit c21bd60929
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -82,7 +82,7 @@
if(canresist)
mobility_flags |= MOBILITY_RESIST
else
mobility_flags &= !MOBILITY_RESIST
mobility_flags &= ~MOBILITY_RESIST
var/canstand_involuntary = conscious && !stat_softcrit && !knockdown && !chokehold && !paralyze && (ignore_legs || has_legs) && !(buckled && buckled.buckle_lying) && !recoveringstam
var/canstand = canstand_involuntary && !resting
@@ -107,7 +107,7 @@
else
mobility_flags |= MOBILITY_UI|MOBILITY_PULL
var/canitem_general = !paralyze && !stun && conscious && !chokehold && !restrained && has_arms && !recoveringstam
var/canitem_general = !paralyze && !stun && conscious && !(stat_softcrit) && !chokehold && !restrained && has_arms && !recoveringstam
if(canitem_general)
mobility_flags |= (MOBILITY_USE | MOBILITY_PICKUP | MOBILITY_STORAGE | MOBILITY_HOLD)
else