summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;