From 7700ffeb3f49ce323bd64e857aa177d259423e91 Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Thu, 24 Oct 2024 08:34:26 -0500 Subject: [PATCH] Default to two teams. --- snakes/src/lib/snake/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakes/src/lib/snake/constants.ts b/snakes/src/lib/snake/constants.ts index 6466cab..3b1a258 100644 --- a/snakes/src/lib/snake/constants.ts +++ b/snakes/src/lib/snake/constants.ts @@ -11,7 +11,7 @@ export const GAME_CONFIG: Readonly = { height: 25, roundDuration: 60, snakesPerTeam: 1, - teamNames: ['red', 'blue', 'orange'], + teamNames: ['red', 'blue'], nomsPerMove: 1, nomDuration: 200, killWorkers: true,