From 64e454662bcfa166d7711eaa48ceb6405149e122 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Sat, 4 Oct 2025 15:11:48 -0700 Subject: [PATCH] "click New Board..." -> "click New Table..." --- server/routes/games.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/routes/games.js b/server/routes/games.js index 3a85693..7fb3039 100755 --- a/server/routes/games.js +++ b/server/routes/games.js @@ -3936,7 +3936,7 @@ const clearGame = (game, session) => { resetGame(game); addChatMessage(game, null, `The game has been reset. You can play again with this board, or ` + - `click 'New board' to mix things up a bit.`); + `click 'New Table' to mix things up a bit.`); sendGameToPlayers(game); }; @@ -3970,7 +3970,7 @@ const gotoLobby = (game, session) => { addChatMessage(game, null, `All players are back to the lobby.`); addChatMessage(game, null, `The game has been reset. You can play again with this board, or `+ - `click 'New board' to mix things up a bit.`); + `click 'New Table' to mix things up a bit.`); sendGameToPlayers(game); return; }