From ae308331ace586269b400f46183073cb153e9a94 Mon Sep 17 00:00:00 2001 From: Casey Date: Tue, 22 Feb 2022 16:57:09 -0500 Subject: [PATCH 1/2] Merge pull request #12307 from Very-Soft/unmuffledamorph Smol morph fix --- .../modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm index 1622321c52..1d6d24d490 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm @@ -323,6 +323,9 @@ parent_morph = parent prey_body = prey prey_body.forceMove(get_turf(parent_morph)) + prey_body.muffled = FALSE + prey_body.absorbed = FALSE + absorbed = TRUE ckey = prey_ckey prey_body.ckey = parent_morph.original_ckey parent_morph.forceMove(src)