summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-29 20:28:36 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-30 01:36:15 +0100
commit3564cdc4e8790eb604a0c2c4987af18c7eb626e6 (patch)
tree6cdd32c8d17a46891e305471e00ae7a5dc4b2c99 /crawl-ref/source/makeitem.cc
parent2c1f11bc7a49ded332b62925fda32016649ee8ba (diff)
downloadcrawl-ref-3564cdc4e8790eb604a0c2c4987af18c7eb626e6.tar.gz
crawl-ref-3564cdc4e8790eb604a0c2c4987af18c7eb626e6.zip
Generate rods of striking as same maxmp as other rods.
They're a starting item no more.
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index ad41d02076..52a4adedd0 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -3414,11 +3414,7 @@ void init_rod_mp(item_def &item, int ncharges, int item_level)
}
else
{
- if (item.sub_type == ROD_STRIKING)
- item.plus2 = random_range(6, 9) * ROD_CHARGE_MULT;
- else
- item.plus2 = random_range(9, 14) * ROD_CHARGE_MULT;
-
+ item.plus2 = random_range(9, 14) * ROD_CHARGE_MULT;
item.special = _roll_rod_enchant(item_level);
}