From d0279599f64a0d6d6acd2c7c9f61be8377896ee3 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Thu, 6 Apr 2023 18:08:01 -0400 Subject: [PATCH] BootySets expanded to handle rune booty. --- src/engine/objects/BootySetEntry.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/engine/objects/BootySetEntry.java b/src/engine/objects/BootySetEntry.java index c34edeba..a159b2ac 100644 --- a/src/engine/objects/BootySetEntry.java +++ b/src/engine/objects/BootySetEntry.java @@ -14,15 +14,23 @@ import java.sql.SQLException; public class BootySetEntry { - + public String bootyType; + public int lowGold; + public int highGold; public int itemBase; + public int lootTable; public float dropChance; + /** * ResultSet Constructor */ public BootySetEntry(ResultSet rs) throws SQLException { + this.bootyType = (rs.getString("bootyType")); + this.lowGold = (rs.getInt("lowGold")); + this.highGold = (rs.getInt("highGold")); this.itemBase = (rs.getInt("itemBase")); + this.lootTable = (rs.getInt("lootTable")); this.dropChance = (rs.getFloat("dropChance")); }