From 1eac979525dd5e7c48431ea14e6b96fad2b353a9 Mon Sep 17 00:00:00 2001 From: Abbie Fland <34605836+AbbieFland@users.noreply.github.com> Date: Wed, 21 Mar 2018 01:06:29 +0000 Subject: [PATCH] Fixes blue color-preview splotches VOREStation companion to Polaris fix in https://github.com/PolarisSS13/Polaris/pull/5082 --- code/modules/client/preference_setup/vore/01_ears.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm index 08e704511a7..91ae5f41c99 100644 --- a/code/modules/client/preference_setup/vore/01_ears.dm +++ b/code/modules/client/preference_setup/vore/01_ears.dm @@ -139,9 +139,9 @@ if(ear_styles_list[pref.ear_style]) var/datum/sprite_accessory/ears/ear = ear_styles_list[pref.ear_style] if (ear.do_colouration) - . += "Change Color
__

" + . += "Change Color
__

" if (ear.extra_overlay) - . += "Change Secondary Color
__

" + . += "Change Secondary Color
__

" var/tail_display = "Normal" if(pref.tail_style && (pref.tail_style in tail_styles_list)) @@ -155,9 +155,9 @@ if(tail_styles_list[pref.tail_style]) var/datum/sprite_accessory/tail/T = tail_styles_list[pref.tail_style] if (T.do_colouration) - . += "Change Color
__

" + . += "Change Color
__

" if (T.extra_overlay) - . += "Change Secondary Color
__

" + . += "Change Secondary Color
__

" var/wing_display = "Normal" if(pref.wing_style && (pref.wing_style in wing_styles_list)) @@ -171,7 +171,7 @@ if(wing_styles_list[pref.wing_style]) var/datum/sprite_accessory/wing/T = wing_styles_list[pref.wing_style] if (T.do_colouration) - . += "Change Color
__

" + . += "Change Color
__

" /datum/category_item/player_setup_item/vore/ears/OnTopic(var/href,var/list/href_list, var/mob/user) if(!CanUseTopic(user))