From 008c1ba08023d671545f2733c62b7b75ef544975 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 8 Aug 2021 23:28:08 -0400 Subject: [PATCH 1/2] Merge pull request #11367 from Heroman3003/eue-fix Fimxes shadekin eyecolors displaying wonkily --- .../mob/living/carbon/human/species/shadekin/shadekin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm index 5bb68f044d..df0142a12e 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -272,7 +272,7 @@ if(eyecolor_val < 40) eyecolor_val = 40 - eyecolor_rgb = rgb(eyecolor_hue, eyecolor_sat, eyecolor_val, COLORSPACE_HSV) + eyecolor_rgb = rgb(eyecolor_hue, eyecolor_sat, eyecolor_val, space=COLORSPACE_HSV) H.r_eyes = rgb2num(eyecolor_rgb)[1] H.g_eyes = rgb2num(eyecolor_rgb)[2]