Start mobequip refactor

This commit is contained in:
2024-03-18 09:38:33 -04:00
parent 7fa8c3bfff
commit 0590ae64e7
20 changed files with 79 additions and 435 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ public class Contract extends AbstractGameObject {
private ArrayList<Integer> npcModTypeTable = new ArrayList<>();
private ArrayList<Integer> npcModSuffixTable = new ArrayList<>();
private ArrayList<Byte> itemModTable = new ArrayList<>();
private ArrayList<MobEquipment> sellInventory = new ArrayList<>();
private ArrayList<Item> sellInventory = new ArrayList<>();
private EnumBitSet<Enum.BuildingGroup> allowedBuildings;
private ArrayList<Integer> buyItemType = new ArrayList<>();
private ArrayList<Integer> buySkillToken = new ArrayList<>();
@@ -197,7 +197,7 @@ public class Contract extends AbstractGameObject {
return itemModTable;
}
public ArrayList<MobEquipment> getSellInventory() {
public ArrayList<Item> getSellInventory() {
return this.sellInventory;
}