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.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 79f8a34fe4..1cc95497dd 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -76,6 +76,9 @@ std::string item_def::name(description_level_type descrip,
bool quantity_words,
unsigned long ignore_flags) const
{
+ if (descrip == DESC_NONE)
+ return ("");
+
std::ostringstream buff;
const std::string auxname = this->name_aux(descrip, terse, ident,
@@ -1205,8 +1208,7 @@ std::string item_def::name_aux( description_level_type desc,
else if (item_plus2 == ZAPCOUNT_EMPTY)
buff << " {empty}";
else if (item_plus2 > 0)
- buff << " {zapped " << item_plus2
- << ((item_plus2 > 1) ? " times" : " time")
+ buff << " {zapped: " << item_plus2
<< '}';
break;