Skip to content

Commit 69d8bad

Browse files
restore default gamemodes
1 parent 8b2d4e3 commit 69d8bad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ app.listen(PORT, (success) => {
155155
// RULES(0): No two game servers should share the same endpoint
156156
//
157157
// 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");
158+
const ffa = new GameServer(FFAArena, "FFA");
159+
const sbx = new GameServer(SandboxArena, "Sandbox");
160160

161-
games.push(ffa);
161+
games.push(ffa, sbx);
162162

163163
util.saveToLog("Servers up", "All servers booted up.", 0x37F554);
164164
util.log("Dumping endpoint -> gamemode routing table");

0 commit comments

Comments
 (0)