summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-06-01 01:18:19 -0400
committerNeil Moore <neil@s-z.org>2014-06-01 01:18:19 -0400
commitdd43c9fbf08cd0a86b21eecf6afa33e832c60b8b (patch)
treedef69a9779722d3740145f1d2ed9875beb4149a0 /crawl-ref/source/itemname.cc
parent8ecc765de4d5fd37a93bc59a44a6e2d3a4253aac (diff)
downloadcrawl-ref-dd43c9fbf08cd0a86b21eecf6afa33e832c60b8b.tar.gz
crawl-ref-dd43c9fbf08cd0a86b21eecf6afa33e832c60b8b.zip
Don't mark obsolete-branded weapons as buggy (rchandra)
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 363353b5e3..ff46b13aec 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -494,8 +494,11 @@ const char* weapon_brand_name(const item_def& item, bool terse)
// both ranged and non-ranged
case SPWPN_CHAOS: return terse ? "chaos" : "chaos";
- // buggy brands
+ // obsolete and buggy brands
#if TAG_MAJOR_VERSION == 34
+ case SPWPN_ORC_SLAYING: return terse ? "slay orc" : "orc slaying";
+ case SPWPN_REACHING: return terse ? "reach" : "reaching";
+ case SPWPN_RETURNING: return terse ? "return" : "returning";
case SPWPN_CONFUSE: return terse ? "confuse" : "confusion";
#endif
default: return terse ? "buggy" : "bugginess";