From bd31afc54fbd1306b7634b36392989ba9f2e54f6 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Sun, 29 Mar 2020 15:02:13 -0700 Subject: [PATCH] Fixes examine panel icons (#6914) --- code/modules/examine/examine.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/examine/examine.dm b/code/modules/examine/examine.dm index 2b2c89a2fa..6e2df0b1fa 100644 --- a/code/modules/examine/examine.dm +++ b/code/modules/examine/examine.dm @@ -34,7 +34,7 @@ // Quickly adds the boilerplate code to add an image and padding for the image. /proc/desc_panel_image(var/icon_state) - return "[bicon(description_icons[icon_state])][EXAMINE_PANEL_PADDING]" + return "\icon[description_icons[icon_state]][EXAMINE_PANEL_PADDING]" /mob/living/get_description_fluff() if(flavor_text) //Get flavor text for the green text. @@ -56,7 +56,7 @@ description_holders["interactions"] = A.get_description_interaction() description_holders["name"] = "[A.name]" - description_holders["icon"] = "[bicon(A)]" + description_holders["icon"] = "\icon[A]" description_holders["desc"] = A.desc /mob/Stat()