From 1f4bf2bf3eb35c208612bd101a0e3394eab692c1 Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 28 Jan 2021 18:50:16 +0200 Subject: [PATCH] Fixes item-contained prey not un-muffling --- code/modules/vore/eating/belly_obj_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index d2175154973..8032e7707bc 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -289,6 +289,10 @@ //Place them into our drop_location M.forceMove(drop_location()) + for(var/mob/living/L in M.contents) + L.muffled = 0 + for(var/obj/item/weapon/holder/H in M.contents) + H.held_mob.muffled = 0 items_preserved -= M