From f0c651da7bb4d8cc881bfe79d9b4cf3aef817141 Mon Sep 17 00:00:00 2001 From: _0Steven <42909981+00-Steven@users.noreply.github.com> Date: Mon, 21 Oct 2024 15:22:19 +0200 Subject: [PATCH] Fix a runtime with the different slime species getting a fish tail, cat ears, or a cat tail. (#87318) --- code/datums/bodypart_overlays/mutant_bodypart_overlay.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm b/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm index 5b9101273bc..06e3a636f9b 100644 --- a/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm +++ b/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm @@ -128,7 +128,7 @@ draw_color = bodypart_owner.draw_color if(ORGAN_COLOR_HAIR) var/datum/species/species = bodypart_owner.owner?.dna?.species - var/fixed_color = species?.get_fixed_hair_color(bodypart_owner) + var/fixed_color = species?.get_fixed_hair_color(bodypart_owner.owner) if(!ishuman(bodypart_owner.owner)) draw_color = fixed_color return