summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-02-25 14:37:30 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-02-26 21:20:33 -0700
commit5516d479cdc6e041aebf3df4311fde0ab3d6fb48 (patch)
treec63c1374945bf050f633b4e00e66f83655846278 /crawl-ref/source/mon-gear.cc
parent359569f0a7cc005214ae84427511059f71db10ad (diff)
downloadcrawl-ref-5516d479cdc6e041aebf3df4311fde0ab3d6fb48.tar.gz
crawl-ref-5516d479cdc6e041aebf3df4311fde0ab3d6fb48.zip
Remove the rod of venom.
It had OTR (available through staff of Olgreb), Poisonous Cloud (sort of available through the rod of clouds), and Poison Arrow. A multi-spell rod which duplicates effects of other items and whose sole remaining spell is itself a normal spell does not need to exist.
Diffstat (limited to 'crawl-ref/source/mon-gear.cc')
-rw-r--r--crawl-ref/source/mon-gear.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index 264b465e56..d1bd5515ea 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -701,7 +701,7 @@ static void _give_weapon(monster* mon, int level, bool melee_only = false,
#if TAG_MAJOR_VERSION == 34
do
item.sub_type = static_cast<rod_type>(random2(NUM_RODS));
- while (item.sub_type == ROD_WARDING);
+ while (item.sub_type == ROD_WARDING || item.sub_type == ROD_VENOM);
#else
item.sub_type = static_cast<rod_type>(random2(NUM_RODS));
#endif