diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Smite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Smite.java index 68f61e0a6..c5bce067d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Smite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Smite.java @@ -91,10 +91,10 @@ public class Smite extends TargetedClericSpell { public void call() { AttackIndicator.target(enemy); - float accMult = Char.INFINITE_ACCURACY; + float accMult = 1; if (!(hero.belongings.attackingWeapon() instanceof Weapon) || ((Weapon) hero.belongings.attackingWeapon()).STRReq() <= hero.STR()){ - accMult = 1; + accMult = Char.INFINITE_ACCURACY; } if (hero.attack(enemy, 1, 0, accMult)){ Sample.INSTANCE.play(Assets.Sounds.HIT_STRONG);