From 05798ef65c606af0c0d2fa66830e9dbf15732a28 Mon Sep 17 00:00:00 2001 From: DrPainis <79603707+DrPainis@users.noreply.github.com> Date: Mon, 20 Dec 2021 19:23:44 -0500 Subject: [PATCH] makes this do something probably doesn't work --- .../living/carbon/human/innate_abilities/customization.dm | 5 ++++- 1 file changed, 4 insertions(+), 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 5610328eb0..80705d252a 100644 --- a/code/modules/mob/living/carbon/human/innate_abilities/customization.dm +++ b/code/modules/mob/living/carbon/human/innate_abilities/customization.dm @@ -40,7 +40,10 @@ 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) - H.update_body() + H.left_eye_color = "new_color" + H.right_eye_color = "new_color" + H.dna?.update_ui_block(DNA_LEFT_EYE_COLOR_BLOCK) + H.dna?.update_ui_block(DNA_RIGHT_EYE_COLOR_BLOCK) else to_chat(H, "Invalid color. Your color is not bright enough.") else if(select_alteration == "Hair Style")