From 59bf7875817b32c9eed1f860ec30be97eee4b167 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Thu, 28 Mar 2024 05:02:39 -0400 Subject: [PATCH] ItemTableEntry column update --- src/engine/loot/ItemTableEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/loot/ItemTableEntry.java b/src/engine/loot/ItemTableEntry.java index d501b8aa..1da68e8a 100644 --- a/src/engine/loot/ItemTableEntry.java +++ b/src/engine/loot/ItemTableEntry.java @@ -24,7 +24,7 @@ public class ItemTableEntry { public ItemTableEntry(ResultSet rs) throws SQLException { this.minRoll = rs.getInt("minRoll"); this.maxRoll = rs.getInt("maxRoll"); - this.templateID = rs.getInt("itemBaseUUID"); + this.templateID = rs.getInt("templateID"); this.minSpawn = rs.getInt("minSpawn"); this.maxSpawn = rs.getInt("maxSpawn"); }