PlayerCombatStats final

This commit is contained in:
2025-01-21 21:07:17 -06:00
parent f6299f5b97
commit 0cff9524c2
+1 -1
View File
@@ -103,7 +103,7 @@ public class PlayerCombatStats {
atr = primaryCalc + skillCalc + masteryCalc + atrEnchants;
atr *= 1 + (this.owner.bonuses.getFloatPercentAll(Enum.ModType.OCV, Enum.SourceType.None) - stanceValue);
atr *= 1 + stanceValue;
atr = Math.round(atr);
atr = (float) Math.ceil(atr);
if(mainHand){
this.atrHandOne = atr;