Slots will be derived not stored.

This commit is contained in:
2023-04-29 08:08:45 -04:00
parent 2114d9832f
commit 225e55d956
4 changed files with 4 additions and 36 deletions
-5
View File
@@ -36,7 +36,6 @@ import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReentrantReadWriteLock;
@@ -102,8 +101,6 @@ public class Mob extends AbstractIntelligenceAgent {
private DateTime upgradeDateTime = null;
private boolean lootSync = false;
public int slot = -1;
/**
* No Id Constructor
*/
@@ -278,8 +275,6 @@ public class Mob extends AbstractIntelligenceAgent {
if (rs.getString("fsm").length() > 1)
this.BehaviourType = MobBehaviourType.valueOf(rs.getString("fsm"));
this.slot = rs.getInt("slot");
} catch (Exception e) {
Logger.error(e + " " + this.dbID );
}