new booty system update

This commit is contained in:
2023-04-07 11:22:14 -05:00
parent d951eb4b38
commit 2b90679087
2 changed files with 12 additions and 3 deletions
@@ -182,8 +182,13 @@ public class dbLootTableHandler extends dbHandlerBase {
while (rs.next()) {
recordsRead++;
LootManager.ModTypeTableRow mttr = new LootManager.ModTypeTableRow(rs);
LootManager.AddModTypeTableRow(rs.getInt("modGroup"),mttr);
try {
LootManager.ModTypeTableRow mttr = new LootManager.ModTypeTableRow(rs);
LootManager.AddModTypeTableRow(rs.getInt("modGroup"), mttr);
}
catch(Exception ex){
Logger.info("MOD TABLE ERROR: " + rs.getInt("modGroup"));
}
}
Logger.info( "read: " + recordsRead);