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 );