Fixes Oversight - Preference Preview Icon Using Correct Colour

I'd missed this bit before where for the preview icon (only) it was
still using the skin colour to generate the horns. Fixed it up so the
preview icon is accurate.
This commit is contained in:
KasparoVy
2015-12-27 19:48:24 -05:00
parent abb528366e
commit 738d951707
@@ -272,7 +272,7 @@ datum/preferences
var/datum/sprite_accessory/horn_style = horn_styles_list[hn_style]
if(horn_style)
var/icon/horns_s = new/icon("icon" = horn_style.icon, "icon_state" = "[horn_style.icon_state]_s")
horns_s.Blend(rgb(r_skin, g_skin, b_skin), ICON_ADD)
horns_s.Blend(rgb(r_horns, g_horns, b_horns), ICON_ADD)
eyes_s.Blend(horns_s, ICON_OVERLAY)
var/datum/sprite_accessory/facial_hair_style = facial_hair_styles_list[f_style]