1
0

"click New Board..." -> "click New Table..."

This commit is contained in:
James Ketr 2025-10-04 15:11:48 -07:00
parent 7d0f5ac016
commit 64e454662b

View File

@ -3936,7 +3936,7 @@ const clearGame = (game, session) => {
resetGame(game); resetGame(game);
addChatMessage(game, null, addChatMessage(game, null,
`The game has been reset. You can play again with this board, or ` + `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); sendGameToPlayers(game);
}; };
@ -3970,7 +3970,7 @@ const gotoLobby = (game, session) => {
addChatMessage(game, null, `All players are back to the lobby.`); addChatMessage(game, null, `All players are back to the lobby.`);
addChatMessage(game, null, addChatMessage(game, null,
`The game has been reset. You can play again with this board, or `+ `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); sendGameToPlayers(game);
return; return;
} }