This commit is contained in:
2024-07-10 19:45:38 -05:00
committed by MagicBot
parent 145449f26d
commit 0fbb43e021
+3 -2
View File
@@ -197,8 +197,6 @@ public enum CombatManager {
}
}
checkForProc(attacker,target,weapon);
//get delay for the auto attack job
long delay = 5000;
@@ -359,6 +357,9 @@ public enum CombatManager {
}
}
//check for proccing
checkForProc(attacker,target,weapon);
//calculate the base damage
int damage = ThreadLocalRandom.current().nextInt(min, max + 1);
if (damage == 0) {