From 8aa1b48bfcf8cafa614980e96edd7d4fd83761d4 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:15:00 -0700 Subject: [PATCH] [MIRROR] some small intent struggle fixes (#12295) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/modules/vore/eating/belly_obj_resist.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/belly_obj_resist.dm b/code/modules/vore/eating/belly_obj_resist.dm index 7e7c19f05e..e0726bdf11 100644 --- a/code/modules/vore/eating/belly_obj_resist.dm +++ b/code/modules/vore/eating/belly_obj_resist.dm @@ -20,7 +20,7 @@ if(!private_struggle) resist_play_sound() - if((prob(belchchance) && escapable != B_ESCAPABLE_INTENT) || (living_prey.a_intent == I_HELP && escapable == B_ESCAPABLE_INTENT)) + if (prob(belchchance) && (escapable != B_ESCAPABLE_INTENT || (living_prey.a_intent == I_HELP && escapable == B_ESCAPABLE_INTENT))) owner.emote("belch") if(!escapable) //If the stomach has escapable enabled. @@ -28,7 +28,7 @@ to_chat(living_prey, struggle_user_message) return - if(escapable == B_ESCAPABLE_INTENT && living_prey.a_intent != I_HELP) + if(escapable == B_ESCAPABLE_INTENT) switch(living_prey.a_intent) if(I_HURT) if(resist_check_escapechance(living_prey, prey_item))