resist loading refactored as static method to NPCManager

This commit is contained in:
2023-09-01 21:39:34 -05:00
parent 0ab5827ee5
commit 7079bb6a63
3 changed files with 58 additions and 57 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
protected AtomicFloat mana = new AtomicFloat();
protected float manaMax; // Health/Mana/Stamina
protected AtomicBoolean isAlive = new AtomicBoolean(true);
protected Resists resists = new Resists("Genric");
public Resists resists = new Resists("Genric");
protected ConcurrentHashMap<String, JobContainer> timers;
protected ConcurrentHashMap<String, Long> timestamps;
protected int atrHandOne;