Table refactor to conform with sb.

This commit is contained in:
2023-08-05 10:28:32 -04:00
parent 0568dc0771
commit a7abe6c4c5
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ public class GenTableRow {
public GenTableRow(ResultSet rs) throws SQLException {
this.minRoll = rs.getInt("minRoll");
this.maxRoll = rs.getInt("maxRoll");
this.itemTableID = rs.getInt("lootTableID");
this.itemTableID = rs.getInt("itemTableID");
this.pModTable = rs.getInt("pModTableID");
this.sModTable = rs.getInt("sModTableID");
}