From cb088f570411b516a3467159afc0bd9bea4250de Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Fri, 10 Mar 2023 01:22:26 +0100 Subject: [PATCH] forgot to toggle the flesh_mimic flag --- .../code/modules/mob/living/simple_mob/subtypes/fleshtaker.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/fleshtaker.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/fleshtaker.dm index 3830bb4a77..b55fc832eb 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/fleshtaker.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/fleshtaker.dm @@ -37,6 +37,7 @@ Only physical attributes are copied. //copy stats from our engulfed target /mob/living/simple_mob/fleshtaker/proc/flesh_mimic(var/mob/living/simple_mob/target) + flesh_mimic = TRUE name = target.name desc = target.desc icon = target.icon @@ -56,6 +57,7 @@ Only physical attributes are copied. //reset to original values /mob/living/simple_mob/fleshtaker/proc/revert_mimic() + flesh_mimic = FALSE name = base_values["name"] desc = base_values["desc"] icon = base_values["icon"]