fix extra debug

This commit is contained in:
Skillet 2023-11-18 13:36:11 -05:00
parent 554baec20c
commit 3690ea51b8

View File

@ -15,10 +15,10 @@ async function main() {
: await SquadServerFactory.buildFromConfigFile(configPath ? configPath : './config.json');
// watch the server
// await server.watch();
await server.watch();
// now mount the plugins
// await Promise.all(server.plugins.map(async (plugin) => await plugin.mount()));
await Promise.all(server.plugins.map(async (plugin) => await plugin.mount()));
}
main();