summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-item.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-22 04:29:55 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-22 23:18:04 +0200
commit4dbb6ee0fb53a618cd167095707a95124fda71ea (patch)
tree8eb4f687352b9c86a3da2aca38b99a5e2bba9050 /crawl-ref/source/wiz-item.cc
parent6d63218842fccde0660e653fe8f6bc7e066f778f (diff)
downloadcrawl-ref-4dbb6ee0fb53a618cd167095707a95124fda71ea.tar.gz
crawl-ref-4dbb6ee0fb53a618cd167095707a95124fda71ea.zip
Likewise, remove orc slaying.
Such weapons retained the brand, yet it did nothing.
Diffstat (limited to 'crawl-ref/source/wiz-item.cc')
-rw-r--r--crawl-ref/source/wiz-item.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/wiz-item.cc b/crawl-ref/source/wiz-item.cc
index e3df4bbe67..1ed591c2a8 100644
--- a/crawl-ref/source/wiz-item.cc
+++ b/crawl-ref/source/wiz-item.cc
@@ -1139,7 +1139,9 @@ static void _debug_acquirement_stats(FILE *ostat)
"freezing",
"holy wrath",
"electrocution",
+#if TAG_MAJOR_VERSION == 34
"orc slaying",
+#endif
"dragon slaying",
"venom",
"protection",
@@ -1152,16 +1154,22 @@ static void _debug_acquirement_stats(FILE *ostat)
"pain",
"antimagic",
"distortion",
+#if TAG_MAJOR_VERSION == 34
"reaching",
"returning",
+#endif
"chaos",
"evasion",
"confusion",
"penetration",
"reaping",
"acid",
+#if TAG_MAJOR_VERSION == 34
+ "confuse",
+#endif
"debug randart",
};
+ COMPILE_CHECK(ARRAYSZ(names) == NUM_SPECIAL_WEAPONS);
for (int i = 0; i < NUM_SPECIAL_WEAPONS; ++i)
if (ego_quants[i] > 0)