From 239782e74aa2050e1632f1e35e9e872343375365 Mon Sep 17 00:00:00 2001 From: LiteralMushroom <79603707+LiteralMushroom@users.noreply.github.com> Date: Mon, 10 Jan 2022 18:52:16 -0500 Subject: [PATCH] maybe makes it compile --- .../mob/living/carbon/human/innate_abilities/customization.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/innate_abilities/customization.dm b/code/modules/mob/living/carbon/human/innate_abilities/customization.dm index 6f5a457b1c..3acbc0c4ed 100644 --- a/code/modules/mob/living/carbon/human/innate_abilities/customization.dm +++ b/code/modules/mob/living/carbon/human/innate_abilities/customization.dm @@ -38,7 +38,7 @@ if(iscultist(H) && HAS_TRAIT(H, TRAIT_CULT_EYES)) to_chat(H, "The power of the cult overrules your eyes, do not be ashamed of your power!") var/new_color = input(owner, "Choose your eye color:", "Race change","#"+H.dna.features["mcolor"]) as color|null - else if(new_color) + else(new_color) var/temp_hsv = RGBtoHSV(new_color) if(ReadHSV(temp_hsv)[3] >= ReadHSV(MINIMUM_MUTANT_COLOR)[3]) // mutantcolors must be bright H.dna.features["mcolor"] = sanitize_hexcolor(new_color, 6)