From 0bf319ae22f25a248f893e0dd0c2925beb5576cb Mon Sep 17 00:00:00 2001 From: Nadyr <41974248+Darlantanis@users.noreply.github.com> Date: Fri, 23 Sep 2022 17:45:19 -0400 Subject: [PATCH] powder that makes you say yes --- code/modules/mob/living/living_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 58bf83160c..9d5c38d701 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -328,7 +328,7 @@ //Throwing a prey into a pred takes priority. After that it checks to see if the person being thrown is a pred. if(istype(AM, /mob/living)) var/mob/living/thrown_mob = AM - if(!client && !thrown_mob.allowmobvore) + if(!client && !thrown_mob.allowmobvore) return //The mob is AI controlled and the prey doesn't allow for mob vore allowed, don't even bother. if((can_be_drop_pred && throw_vore) && (thrown_mob.devourable && thrown_mob.throw_vore && thrown_mob.can_be_drop_prey)) //Prey thrown into pred. vore_selected.nom_mob(thrown_mob) //Eat them!!!