v0.4.1: reduced the bonus levels granted to wand of disintegration

This commit is contained in:
Evan Debenham 2016-07-18 23:52:00 -04:00 committed by Evan Debenham
parent e8ed5949f1
commit 13f2d037d1

View File

@ -97,7 +97,7 @@ public class WandOfDisintegration extends DamageWand {
Dungeon.observe();
}
int lvl = level + chars.size() + terrainBonus;
int lvl = level + (chars.size()-1) + terrainBonus;
for (Char ch : chars) {
processSoulMark(ch, chargesPerCast());
ch.damage( damageRoll(lvl), this );