From 5cba8ecb3a6dea3b683e81977abb8a329f385c31 Mon Sep 17 00:00:00 2001 From: Heroman Date: Mon, 9 Aug 2021 09:36:11 +1000 Subject: [PATCH] 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 31ae6efa50f..660845c7979 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -268,7 +268,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]