allow overriding stack sizes

This commit is contained in:
Martin Michelsen
2024-02-22 00:05:40 -08:00
parent 4e4ba5650d
commit 0383dc90b8
24 changed files with 504 additions and 354 deletions
+4 -1
View File
@@ -259,7 +259,10 @@ CommandDefinition c_reload(
} else if (type == "drop-tables") {
args.s->load_drop_tables(true);
} else if (type == "config") {
args.s->forward_to_event_thread([s = args.s]() { s->load_config(); });
args.s->forward_to_event_thread([s = args.s]() {
s->load_config_early();
s->load_config_late();
});
} else if (type == "teams") {
args.s->load_teams(true);
} else if (type == "quests") {