fixed mob ATR #16

Merged
MagicBot merged 1 commits from mob-atr-fix into master 2022-08-24 12:21:26 +00:00
Showing only changes of commit f0b80f8eb3 - Show all commits
+2 -2
View File
@@ -1936,8 +1936,8 @@ public class Mob extends AbstractIntelligenceAgent {
// calculate atr
float atr = this.mobBase.getAttackRating();
atr += ((int) skillPercentage * 4f); //<-round down skill% -
atr += ((int) masteryPercentage * 3f);
//atr += ((int) skillPercentage * 4f); //<-round down skill% -
//atr += ((int) masteryPercentage * 3f);
if (this.statStrCurrent > this.statDexCurrent)
atr += statStrCurrent / 2;