diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Whip.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Whip.java index ad98dbb6a..11df2e04b 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Whip.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Whip.java @@ -83,7 +83,7 @@ public class Whip extends MeleeWeapon { public void call() { beforeAbilityUsed(hero, finalClosest); for (Char ch : targets) { - hero.attack(ch, 0, 1, ch == finalClosest ? Char.INFINITE_ACCURACY : 1); + hero.attack(ch, 1, 0, ch == finalClosest ? Char.INFINITE_ACCURACY : 1); if (!ch.isAlive()){ onAbilityKill(hero, ch); }