diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java index 0771d542f..2ba00514f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java @@ -70,7 +70,7 @@ public class WandOfBlastWave extends Wand { if (ch != null){ ch.damage(damage, this); - if (ch.isAlive() && bolt.path.size() > bolt.dist) { + if (ch.isAlive() && bolt.path.size() > bolt.dist+1) { Ballistica trajectory = new Ballistica(ch.pos, bolt.path.get(bolt.dist + 1), Ballistica.MAGIC_BOLT); int strength = level + 3; throwChar(ch, trajectory, strength);