Fixes examine panel icons (#6914)

This commit is contained in:
Atermonera
2020-03-29 15:02:13 -07:00
committed by VirgoBot
parent 26a2a8504d
commit bd31afc54f

View File

@@ -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()