More junk removal

This commit is contained in:
2024-03-10 12:33:33 -04:00
parent 8bf47fb4fe
commit 87290baa52
-2
View File
@@ -32,7 +32,6 @@ public class ItemBase {
//requirements/restrictions //requirements/restrictions
private final ItemType type; private final ItemType type;
private int vendorType;
private final int modTable; private final int modTable;
private final int useID; private final int useID;
private int hashID; private int hashID;
@@ -65,7 +64,6 @@ public class ItemBase {
this.type = ItemType.valueOf(rs.getString("Type")); this.type = ItemType.valueOf(rs.getString("Type"));
this.useID = rs.getInt("useID"); this.useID = rs.getInt("useID");
this.vendorType = rs.getInt("vendorType");
this.useAmount = rs.getByte("useAmount"); this.useAmount = rs.getByte("useAmount");
this.modTable = rs.getInt("modTable"); this.modTable = rs.getInt("modTable");
this.hashID = rs.getInt("itemHashID"); this.hashID = rs.getInt("itemHashID");