summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acquire.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/acquire.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/acquire.cc')
-rw-r--r--crawl-ref/source/acquire.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/acquire.cc b/crawl-ref/source/acquire.cc
index 582e896bc6..8966ce835b 100644
--- a/crawl-ref/source/acquire.cc
+++ b/crawl-ref/source/acquire.cc
@@ -799,7 +799,7 @@ static int _find_acquirement_subtype(object_class_type &class_wanted,
case OBJ_RODS:
do
type_wanted = random2(NUM_RODS);
- while (type_wanted == ROD_WARDING);
+ while (type_wanted == ROD_WARDING || type_wanted == ROD_VENOM);
break;
#else
case OBJ_RODS: type_wanted = random2(NUM_RODS); break;