More refactor out itembase

This commit is contained in:
2024-03-15 10:55:49 -04:00
parent 57122e5b74
commit e323c80fba
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ public class BootySetEntry {
public String bootyType;
public int lowGold;
public int highGold;
public int itemBase;
public int templateID;
public int genTable;
public float dropChance;
@@ -29,7 +29,7 @@ public class BootySetEntry {
this.bootyType = (rs.getString("bootyType"));
this.lowGold = (rs.getInt("lowGold"));
this.highGold = (rs.getInt("highGold"));
this.itemBase = (rs.getInt("itemBase"));
this.templateID = (rs.getInt("itemBase"));
this.genTable = (rs.getInt("genTable"));
this.dropChance = (rs.getFloat("dropChance"));
}