Method moved to manager class.

This commit is contained in:
2023-08-06 08:36:16 -04:00
parent f0503aa63b
commit a3a2b01ec4
3 changed files with 10 additions and 11 deletions
+9
View File
@@ -436,4 +436,13 @@ public enum LootManager {
}
}
//call this on server startup to populate the tables
public static void populateLootTables() {
DbManager.LootQueries.populateGenTables();
DbManager.LootQueries.populateItemTables();
DbManager.LootQueries.populateModTables();
DbManager.LootQueries.populateModTypeTables();
}
}