From 931f45a22a8886a831d7940f4b506c85154b42ee Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 22 Nov 2024 08:55:36 -0800 Subject: [PATCH] better logs game join --- src/client/ClientGame.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/ClientGame.ts b/src/client/ClientGame.ts index d307749be..ee40198b1 100644 --- a/src/client/ClientGame.ts +++ b/src/client/ClientGame.ts @@ -39,7 +39,7 @@ export function joinLobby(lobbyConfig: LobbyConfig, onjoin: () => void): () => v const transport = new Transport(lobbyConfig.isLocal, eventBus, lobbyConfig.gameID, lobbyConfig.ip, clientID, playerID, config, lobbyConfig.playerName) const onconnect = () => { - console.log('Joined game lobby!'); + console.log(`Joined game lobby ${lobbyConfig.gameID}`); transport.joinGame(0) }; const onmessage = (message: ServerMessage) => {