Slot added to stored procedures.

This commit is contained in:
2023-04-24 16:23:13 -04:00
parent 0513cc978e
commit 6d73e12c5c
4 changed files with 9 additions and 3 deletions
+4
View File
@@ -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 );
}
+1 -1
View File
@@ -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;