From 9ce3a7f4e004f3101b039fd0777fc48e921e1b75 Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Sun, 11 Aug 2024 20:16:59 +0100 Subject: [PATCH] Fixed vore struggle animation not working (#16182) Fixed the vore sprite struggle animation when prey used resist in a belly. Fixes #16181 --- code/modules/vore/eating/belly_obj_vr.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 23b07967893..e79c877ee2c 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -1335,6 +1335,11 @@ var/sound/struggle_snuggle var/sound/struggle_rustle = sound(get_sfx("rustle")) + if(resist_triggers_animation && affects_vore_sprites) + var/mob/living/carbon/human/O = owner + if(istype(O)) + O.vore_belly_animation() + if(is_wet) if(!fancy_vore) struggle_snuggle = sound(get_sfx("classic_struggle_sounds"))