diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 3f65e009046..fe9a02adc13 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -517,6 +517,9 @@ else swallow_time = istype(prey, /mob/living/carbon/human) ? belly.human_prey_swallow_time : belly.nonhuman_prey_swallow_time + // Their AI should get notified so they can stab us + prey.ai_holder?.react_to_attack(user) + //Timer and progress bar if(!do_after(user, swallow_time, prey, exclusive = TRUE)) return FALSE // Prey escpaed (or user disabled) before timer expired.