diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfLightning.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfLightning.java index bb8376c4e..26e189ec1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfLightning.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfLightning.java @@ -57,7 +57,7 @@ public class WandOfLightning extends Wand { protected void onZap( Ballistica bolt ) { //lightning deals less damage per-target, the more targets that are hit. - float multipler = (0.6f + 0.4f*affected.size())/affected.size(); + float multipler = 0.4f + (0.6f/affected.size()); if (Level.water[bolt.collisionPos]) multipler *= 1.5f; int min = 5+level;