Adds weaken and stun

This commit is contained in:
VerySoft
2023-05-11 13:12:03 -04:00
parent f7d8cf029c
commit 5d61c3c52f
+1 -1
View File
@@ -144,7 +144,7 @@
return FALSE
//VOREStation add start
else if(forgive_resting) //Doing it this way so we only think about the other conditions if the var is actually set
if((holder.health == holder.maxHealth) && !hostile && L.resting) //If our health is full, no one is fighting us, we can forgive
if((holder.health == holder.maxHealth) && !hostile && (L.resting || L.weakened || L.stunned)) //If our health is full, no one is fighting us, we can forgive
var/mob/living/simple_mob/vore/eater = holder
if(!eater.will_eat(L)) //We forgive people we can eat by eating them
set_stance(STANCE_IDLE)