[MIRROR] some small intent struggle fixes (#12295)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-01-19 18:15:00 +01:00
committed by GitHub
co-authored by Kashargul
parent ef56bf8b45
commit 8aa1b48bfc
+2 -2
View File
@@ -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))