summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/itemname.cc2
-rw-r--r--crawl-ref/source/output.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 2d02dccdef..daff922b71 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -240,7 +240,7 @@ std::string item_def::name(description_level_type descrip,
}
}
- if (descrip != DESC_PLAIN && descrip != DESC_BASENAME)
+ if (descrip != DESC_BASENAME)
{
const bool tried = !ident && !equipped && item_type_tried(*this);
std::string tried_str = "";
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 2d5b9a6e97..94ec295c43 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -468,7 +468,7 @@ static void _print_stats_wp(int y)
textcolor(prefcol);
cprintf("%s",
- wpn.name(DESC_INVENTORY, true)
+ wpn.name(DESC_INVENTORY, true, false, true)
.substr(0, crawl_view.hudsz.x - 4).c_str());
textcolor(LIGHTGREY);
}