Corrected Vesta's longsword damage

This commit is contained in:
Ryan 2023-10-04 23:26:42 +00:00
parent 7c38339e16
commit b87a3821dd

View file

@ -53,7 +53,7 @@ public final class FeintSpecialHandler extends MeleeSwingHandler implements Plug
state.setStyle(CombatStyle.MELEE);
int hit = 0;
if (isAccurateImpact(entity, victim, CombatStyle.MELEE, 1.0, 1.0)) {
hit = RandomFunction.random(calculateHit(entity, victim, RandomFunction.random(1.0, 2.50)));
hit = RandomFunction.random(calculateHit(entity, victim, RandomFunction.random(1.0, 1.2)));
}
state.setEstimatedHit(hit);
return 1;