From 5ec4cd611fd3fc393adec8854af1bcf44aaa2f95 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 7 Jul 2021 17:50:39 -0400 Subject: [PATCH] Mobs with AI try to stab you when you eat them --- code/modules/vore/eating/living_vr.dm | 3 +++ 1 file changed, 3 insertions(+) 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.