Verbose examine fix.

This commit is contained in:
lolman360
2021-02-15 23:11:16 +11:00
parent 35db284250
commit 2b0b4e8895
2 changed files with 3 additions and 3 deletions
+2 -2
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 "\[icon2html(thing = description_icons[icon_state], target = world)][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"] = "[icon2html(thing = A, target = world)]"
description_holders["icon"] = "\icon[A]" //this is icon not icon2html
description_holders["desc"] = A.desc
/mob/Stat()