From 13f2d037d12a5382dc3f8a9da4cd24d6268d62cc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 18 Jul 2016 23:52:00 -0400 Subject: [PATCH] v0.4.1: reduced the bonus levels granted to wand of disintegration --- .../shatteredpixeldungeon/items/wands/WandOfDisintegration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java index 13ecc36da..066491e04 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java @@ -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 );