This commit is contained in:
Zuhayr
2015-01-02 18:58:52 +10:30
parent 6cae51a945
commit 041cd3f3f3
2 changed files with 2 additions and 2 deletions
@@ -204,7 +204,7 @@
// Called when using the shredding behavior.
/datum/species/proc/can_shred(var/mob/living/carbon/human/H, var/ignore_intent)
if(ignore_intent && H.a_intent != "hurt")
if(!ignore_intent && H.a_intent != "hurt")
return 0
for(var/datum/unarmed_attack/attack in unarmed_attacks)
+1 -1
View File
@@ -640,7 +640,7 @@
can_break_cuffs = 1
else if(istype(CM,/mob/living/carbon/human))
var/mob/living/carbon/human/H = CM
if(H.species.can_shred(H))
if(H.species.can_shred(H,1))
can_break_cuffs = 1
if(can_break_cuffs) //Don't want to do a lot of logic gating here.