PlayerCombatStats proper delays

This commit is contained in:
2025-01-22 16:05:01 -06:00
parent 09af8084b9
commit 030d1110b9
2 changed files with 12 additions and 7 deletions
-7
View File
@@ -5108,13 +5108,6 @@ public class PlayerCharacter extends AbstractCharacter {
}
if(this.isAlive() && this.isActive && this.enteredWorld) {
if (this.combatStats == null) {
this.combatStats = new PlayerCombatStats(this);
}
PlayerCombatStats cStats = this.combatStats;
cStats.update();
}
} catch (Exception e) {
Logger.error(e);
} finally {