ItemTableEntry column update

This commit is contained in:
2024-03-28 05:02:39 -04:00
parent 61bb7be6b1
commit 59bf787581
+1 -1
View File
@@ -24,7 +24,7 @@ public class ItemTableEntry {
public ItemTableEntry(ResultSet rs) throws SQLException { public ItemTableEntry(ResultSet rs) throws SQLException {
this.minRoll = rs.getInt("minRoll"); this.minRoll = rs.getInt("minRoll");
this.maxRoll = rs.getInt("maxRoll"); this.maxRoll = rs.getInt("maxRoll");
this.templateID = rs.getInt("itemBaseUUID"); this.templateID = rs.getInt("templateID");
this.minSpawn = rs.getInt("minSpawn"); this.minSpawn = rs.getInt("minSpawn");
this.maxSpawn = rs.getInt("maxSpawn"); this.maxSpawn = rs.getInt("maxSpawn");
} }