Slot added to stored procedures.
This commit is contained in:
@@ -102,6 +102,8 @@ public class Mob extends AbstractIntelligenceAgent {
|
||||
private DateTime upgradeDateTime = null;
|
||||
private boolean lootSync = false;
|
||||
|
||||
public int slot = -1;
|
||||
|
||||
/**
|
||||
* No Id Constructor
|
||||
*/
|
||||
@@ -276,6 +278,8 @@ 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 );
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ public class NPC extends AbstractCharacter {
|
||||
private String nameOverride = "";
|
||||
private int equipmentSetID = 0;
|
||||
public int runeSetID = 0;
|
||||
private int slot;
|
||||
public int slot;
|
||||
private Regions region = null;
|
||||
|
||||
public Vector3fImmutable inBuildingLoc = Vector3fImmutable.ZERO;
|
||||
|
||||
Reference in New Issue
Block a user