From f31346c67f5eb697e63d0247ff9cead701b4284c Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Wed, 28 May 2025 12:57:32 -0400 Subject: [PATCH] Mobvore fix (#17680) * Some text adjusment on OOC escape Let's not assume abuse if it's being used. * Less aggressive weight * Update id_stacks.dm * Mobvore fix * Adds a short stun --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index ece16687ad..1a0c8df3d4 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -171,9 +171,10 @@ M.visible_message(span_danger("\The [src] pounces on \the [M]!")) else // pounce misses! M.visible_message(span_danger("\The [src] attempts to pounce \the [M] but misses!")) + AdjustStunned(2) playsound(src, 'sound/weapons/punchmiss.ogg', 25, 1, -1) - if(will_eat(M) && (!M.canmove || vore_standing_too)) //if they're edible then eat them too + if(will_eat(M) && (M.lying || vore_standing_too)) //if they're edible then eat them too return EatTarget(M) else return //just leave them