catch failure in combat stats to prevent deadlock

This commit is contained in:
2025-02-26 19:31:01 -06:00
parent c1aa6e2434
commit 69113ee3c4
+5 -1
View File
@@ -5160,7 +5160,11 @@ public class PlayerCharacter extends AbstractCharacter {
if (this.combatStats == null) {
this.combatStats = new PlayerCombatStats(this);
} else {
this.combatStats.update();
try {
this.combatStats.update();
}catch(Exception ignored){
}
}
this.doRegen();
}