From 136697d0515bbf3bb2170763ac5842db642d6202 Mon Sep 17 00:00:00 2001 From: Verkister Date: Tue, 21 Apr 2020 21:30:49 +0300 Subject: [PATCH] Fixes morph TF overwriting its verbs It's hard to do stuff like ventcrawling or eating or whatever when the transformation has irreversibly overwritten your mob abilities with the abilities of some whatever inanimate object. --- code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm | 1 + 1 file changed, 1 insertion(+) 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 6f96b5e3e02..185dab89945 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 @@ -94,6 +94,7 @@ visible_message("[src] suddenly twists and changes shape, becoming a copy of [target]!") var/mutable_appearance/ma = new(target) + ma.verbs = verbs ma.alpha = max(ma.alpha, 150) //fucking chameleons ma.transform = initial(target.transform) //will this ever be non-null?