Handcuffs Now Require An Aggressive Grab (#7299)

This commit is contained in:
ParadoxSpace
2020-05-01 18:55:32 +02:00
committed by GitHub
parent ced5f7b70f
commit 3d0d55d9c6
3 changed files with 57 additions and 4 deletions
+2 -2
View File
@@ -697,7 +697,7 @@ default behaviour is:
/mob/living/var/last_resist
/mob/living/proc/resist_grab()
if(last_resist + 8 > world.time)
if(last_resist + 10 > world.time)
return
last_resist = world.time
if(stunned > 10)
@@ -733,7 +733,7 @@ default behaviour is:
else
resist_chance = 3 * resist_power
resist_msg = span("danger", "[src] has broken free of [G.assailant]'s headlock!")
if(prob(resist_chance))
visible_message(resist_msg)
qdel(G)