From 6eeffabb76dc6953a3f5269e8285f3ece140f0ea Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 2 Feb 2021 20:05:39 +0100 Subject: [PATCH] [MIRROR] fixes wizard corpses not having beards (#3032) * fixes wizard corpses not having beard (#56574) "long beard" is not a beard option replaced it with Beard (Very Long) which is the same thing adds vars for corpses to set their hair colors makes wizard have white beard * fixes wizard corpses not having beards Co-authored-by: Fikou --- code/modules/awaymissions/corpse.dm | 10 ++++++++++ code/modules/mob/living/simple_animal/corpse.dm | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 12ef5e5833f..0709d92d2f3 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -205,6 +205,8 @@ var/hairstyle var/facial_hairstyle + var/haircolor + var/facial_haircolor var/skin_tone //SKYRAT EDIT ADDITION BEGIN var/can_use_pref_char = TRUE @@ -326,6 +328,14 @@ H.facial_hairstyle = facial_hairstyle else H.facial_hairstyle = random_facial_hairstyle(H.gender) + if(haircolor) + H.hair_color = haircolor + else + H.hair_color = random_short_color() + if(facial_haircolor) + H.facial_hair_color = facial_haircolor + else + H.facial_hair_color = random_short_color() if(skin_tone) H.skin_tone = skin_tone else diff --git a/code/modules/mob/living/simple_animal/corpse.dm b/code/modules/mob/living/simple_animal/corpse.dm index 2cc7fe77054..578240a3816 100644 --- a/code/modules/mob/living/simple_animal/corpse.dm +++ b/code/modules/mob/living/simple_animal/corpse.dm @@ -153,7 +153,8 @@ name = "Space Wizard Corpse" outfit = /datum/outfit/wizardcorpse hairstyle = "Bald" - facial_hairstyle = "Long Beard" + facial_hairstyle = "Beard (Very Long)" + facial_haircolor = COLOR_WHITE skin_tone = "caucasian1" /datum/outfit/wizardcorpse