Skip to content
Snippets Groups Projects

Corrected Vesta's longsword damage

Merged Ryan requested to merge ryannathans/2009scape-server:vls into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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;
Loading