From 5cd6e1a4b8522885eccae377467264e274b7c88e Mon Sep 17 00:00:00 2001 From: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com> Date: Mon, 20 Feb 2023 22:48:51 +0000 Subject: [PATCH] Mice retain their colors when they die. (#73508) ## About The Pull Request When mice die the corpse they leave behind was always grey, they now drop correctly colored corpses. ## Why It's Good For The Game Bug fix. ## Changelog :cl: fix: Mice will now retain their color when they die. /:cl: --- code/modules/mob/living/basic/vermin/mouse.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/basic/vermin/mouse.dm b/code/modules/mob/living/basic/vermin/mouse.dm index a961ad41c2e..a84c9f71a4f 100644 --- a/code/modules/mob/living/basic/vermin/mouse.dm +++ b/code/modules/mob/living/basic/vermin/mouse.dm @@ -46,8 +46,8 @@ src.tame = tame if(isnull(body_color)) body_color = pick("brown", "gray", "white") - held_state = "mouse_[body_color]" // not handled by variety element - AddElement(/datum/element/animal_variety, "mouse", body_color, FALSE) + held_state = "mouse_[body_color]" // not handled by variety element + AddElement(/datum/element/animal_variety, "mouse", body_color, FALSE) AddElement(/datum/element/swabable, CELL_LINE_TABLE_MOUSE, CELL_VIRUS_TABLE_GENERIC_MOB, 1, 10) AddComponent(/datum/component/squeak, list('sound/effects/mousesqueek.ogg' = 1), 100, extrarange = SHORT_RANGE_SOUND_EXTRARANGE) //as quiet as a mouse or whatever var/static/list/loc_connections = list(