From 56615e91705506017f02c9e4883f0803fcbb20ed Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Sat, 5 Jul 2014 21:28:11 +0100 Subject: [PATCH] Fix Change UI verb --- code/modules/client/preferences_toggles.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/client/preferences_toggles.dm b/code/modules/client/preferences_toggles.dm index 38eefa915cd..95b40bb0992 100644 --- a/code/modules/client/preferences_toggles.dm +++ b/code/modules/client/preferences_toggles.dm @@ -153,10 +153,9 @@ icons.Add(usr.zone_sel) for(var/obj/screen/I in icons) - if(I.color && I.alpha) - I.icon = ui_style2icon(UI_style_new) - I.color = UI_style_color_new - I.alpha = UI_style_alpha_new + I.icon = ui_style2icon(UI_style_new) + I.color = UI_style_color_new + I.alpha = UI_style_alpha_new if(alert("Like it? Save changes?",,"Yes", "No") == "Yes") prefs.UI_style = UI_style_new