From cc871fb582ecc647969f1d1444e22fdb0aecaaf2 Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Sat, 21 Jan 2023 18:30:10 -0500 Subject: [PATCH] remove stray console log --- client/src/modules/game_state/states/InProgress.js | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/modules/game_state/states/InProgress.js b/client/src/modules/game_state/states/InProgress.js index 0f2d613..015ce8b 100644 --- a/client/src/modules/game_state/states/InProgress.js +++ b/client/src/modules/game_state/states/InProgress.js @@ -193,7 +193,6 @@ export class InProgress { }); this.socket.on(globals.EVENT_IDS.REVEAL_PLAYER, (revealData) => { - console.log('here'); const revealedPerson = this.stateBucket.currentGameState.people.find((person) => person.id === revealData.id); if (revealedPerson) { revealedPerson.revealed = true;