We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b2d4e3 commit 69d8badCopy full SHA for 69d8bad
1 file changed
src/index.ts
@@ -155,10 +155,10 @@ app.listen(PORT, (success) => {
155
// RULES(0): No two game servers should share the same endpoint
156
//
157
// NOTES(0): As of now, both servers run on the same process (and thread) here
158
- const ffa = new GameServer("maze", "Maze");
159
- const sbx = new GameServer("teams", "Sandbox");
+ const ffa = new GameServer(FFAArena, "FFA");
+ const sbx = new GameServer(SandboxArena, "Sandbox");
160
161
- games.push(ffa);
+ games.push(ffa, sbx);
162
163
util.saveToLog("Servers up", "All servers booted up.", 0x37F554);
164
util.log("Dumping endpoint -> gamemode routing table");
0 commit comments