summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2010-01-02 23:53:49 -0800
committerStefan O'Rear <stefanor@cox.net>2010-01-02 23:53:49 -0800
commit2f1d5b4be96c2d4ea174caed479022386d1df12b (patch)
tree0d5137a9b2c782359829d0c8e876907ed5718b55 /crawl-ref/source/itemname.cc
parent45257acf3e73631c66d66ebc9ed3e4ac88951a37 (diff)
downloadcrawl-ref-2f1d5b4be96c2d4ea174caed479022386d1df12b.tar.gz
crawl-ref-2f1d5b4be96c2d4ea174caed479022386d1df12b.zip
Unbreak rod descriptions
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 0d7543836a..2c0b60650d 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1626,9 +1626,10 @@ std::string item_def::name_aux(description_level_type desc,
rmod = props["rod_enchantment"];
output_with_sign(buff, rmod);
+ buff << " ";
}
- buff << (item_is_rod(*this) ? " rod" : "staff")
+ buff << (item_is_rod(*this) ? "rod" : "staff")
<< " of " << staff_type_name(item_typ);
}
break;