MobileBooty system integrated.

This commit is contained in:
2023-03-31 09:09:57 -04:00
parent fb15ee912b
commit 2b307daeb2
9 changed files with 116 additions and 464 deletions
-12
View File
@@ -108,8 +108,6 @@ public class Mob extends AbstractIntelligenceAgent {
private int equipmentSetID = 0;
public int runeSetID = 0;
public int bootySetID = 0;
private int lootSet = 0;
private boolean isGuard;
/**
* No Id Constructor
@@ -295,8 +293,6 @@ public class Mob extends AbstractIntelligenceAgent {
if (this.contract != null)
this.equipmentSetID = this.contract.getEquipmentSet();
this.lootSet = (rs.getInt("lootSet"));
this.nameOverride = rs.getString("mob_name");
} catch (Exception e) {
@@ -2466,14 +2462,6 @@ public class Mob extends AbstractIntelligenceAgent {
return equipmentSetID;
}
public int getLootSet() {
return lootSet;
}
public boolean isGuard() {
return this.isGuard;
}
public String getNameOverride() {
return nameOverride;
}