diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 1597f152d7f..0f737fba217 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -994,7 +994,7 @@ datum/preferences if(species == "Human") s_tone = random_skin_tone() if("s_color") - if(species == "Unathi" || species == "Tajaran" || species == "Skrell") + if(species == "Unathi" || species == "Tajaran" || species == "Skrell" || species == "Slime People") r_skin = rand(0,255) g_skin = rand(0,255) b_skin = rand(0,255) @@ -1200,7 +1200,7 @@ datum/preferences s_tone = 35 - max(min( round(new_s_tone), 220),1) if("skin") - if(species == "Unathi" || species == "Tajaran" || species == "Skrell") + if(species == "Unathi" || species == "Tajaran" || species == "Skrell" || species == "Slime People") var/new_skin = input(user, "Choose your character's skin colour: ", "Character Preference") as color|null if(new_skin) r_skin = hex2num(copytext(new_skin, 2, 4))