From 20854dd63970b80a89a7c12fa6d71a28dbff2da6 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 22 Oct 2020 00:01:41 +0100 Subject: [PATCH] extra qol --- code/modules/mob/living/carbon/human/species.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index bfd3b2873a..28aa6eeb66 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -775,11 +775,11 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) var/tertiary_string = advanced_color_system ? "[S.mutant_part_string]_tertiary" : "mcolor3" //failsafe: if there's no value for any of these, set it to white if(!H.dna.features[primary_string]) - H.dna.features[primary_string] = "FFFFFF" + H.dna.features[primary_string] = advanced_color_system ? H.dna.features["mcolor"] : "FFFFFF" if(!H.dna.features[secondary_string]) - H.dna.features[secondary_string] = "FFFFFF" + H.dna.features[secondary_string] = advanced_color_system ? H.dna.features["mcolor2"] : "FFFFFF" if(!H.dna.features[tertiary_string]) - H.dna.features[tertiary_string] = "FFFFFF" + H.dna.features[tertiary_string] = advanced_color_system ? H.dna.features["mcolor3"] : "FFFFFF" if(!husk) if(!forced_colour)