Browse Source

More junk removal

combat-2
MagicBot 8 months ago
parent
commit
87290baa52
  1. 2
      src/engine/objects/ItemBase.java

2
src/engine/objects/ItemBase.java

@ -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");

Loading…
Cancel
Save