From d4e6c4a739ab721c898f93d8aef1c26dadef2f47 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 14 Apr 2022 02:01:21 +0200 Subject: [PATCH] [MIRROR] Fixes facial hair using main hair colour instead of facial hair colour [MDB IGNORE] (#12734) * Fixes facial hair using regular hair colour (#66126) * Fixes facial hair using main hair colour instead of facial hair colour Co-authored-by: GoblinBackwards <22856555+GoblinBackwards@users.noreply.github.com> --- code/modules/surgery/bodyparts/head.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/surgery/bodyparts/head.dm b/code/modules/surgery/bodyparts/head.dm index d70169c314d..96b3cd037d4 100644 --- a/code/modules/surgery/bodyparts/head.dm +++ b/code/modules/surgery/bodyparts/head.dm @@ -236,7 +236,7 @@ hair_alpha = owner_species.hair_alpha hair_color = human_head_owner.hair_color - facial_hair_color = human_head_owner.hair_color + facial_hair_color = human_head_owner.facial_hair_color fixed_hair_color = owner_species.fixed_mut_color //Can be null hair_style = human_head_owner.hairstyle facial_hairstyle = human_head_owner.facial_hairstyle @@ -278,7 +278,7 @@ SET_OVERLAY_VALUE(facial_overlay, color, hair_color_source) SET_OVERLAY_VALUE(hair_overlay, color, hair_color_source) else - SET_OVERLAY_VALUE(facial_overlay, color, hair_color) + SET_OVERLAY_VALUE(facial_overlay, color, facial_hair_color) SET_OVERLAY_VALUE(hair_overlay, color, hair_color) else SET_OVERLAY_VALUE(facial_overlay, color, override_hair_color)