summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index d2a9bbdfdf..beda8a3e5a 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1140,6 +1140,17 @@ std::string item_def::name_aux(description_level_type desc,
}
+ if (know_cosmetic && !know_brand)
+ {
+ switch (get_equip_desc(*this))
+ {
+ case ISFLAG_GLOWING:
+ if (!testbits(ignore_flags, ISFLAG_GLOWING))
+ buff << "glowing ";
+ break;
+ }
+ }
+
if (know_pluses)
{
output_with_sign(buff, it_plus);