Address farie

This commit is contained in:
mochi
2020-07-06 19:22:54 +02:00
parent a96d2d2d38
commit 1d316dfcb0
3 changed files with 6 additions and 4 deletions

View File

@@ -102,8 +102,11 @@
icon = 'icons/mob/actions/actions.dmi'
icon_state = "bg_alien"
else
icon = user.client ? ui_style2icon(user.client.prefs.UI_style) : initial(icon)
icon_state = user.client ? "template" : "bg_default"
icon = initial(icon)
icon_state = "bg_default"
if(user.client) // Apply the client's UI style
icon = ui_style2icon(user.client.prefs.UI_style)
icon_state = "template"
if(user.client)
alpha = user.client.prefs.UI_style_alpha
color = user.client.prefs.UI_style_color

View File

@@ -402,7 +402,7 @@
for(var/obj/screen/inventory/inv in (static_inventory + toggleable_inventory))
if(inv.slot_id)
if(inv.slot_id in S.no_equip)
inv.alpha = hud_alpha * 0.5
inv.alpha = hud_alpha / 2
else
inv.alpha = hud_alpha
for(var/obj/screen/craft/crafting in static_inventory)