Booty loot table is a gentable entry.

This commit is contained in:
2023-08-06 07:53:33 -04:00
parent 67bcb9aeea
commit e424441380
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ public class BootySetEntry {
public int lowGold;
public int highGold;
public int itemBase;
public int itemTable;
public int genTable;
public float dropChance;
/**
@@ -30,7 +30,7 @@ public class BootySetEntry {
this.lowGold = (rs.getInt("lowGold"));
this.highGold = (rs.getInt("highGold"));
this.itemBase = (rs.getInt("itemBase"));
this.itemTable = (rs.getInt("itemTable"));
this.genTable = (rs.getInt("genTable"));
this.dropChance = (rs.getFloat("dropChance"));
}