server for my chess game
Diffstat (limited to 'src/game.js')
| -rw-r--r-- | src/game.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.js b/src/game.js index 0c34957..7189c66 100644 --- a/src/game.js +++ b/src/game.js @@ -101,7 +101,7 @@ export class Game { send_group_packet(data, header, this.spectators); // give it to the specs return true; } - } else console.log(`could not find client in game ${this.gamecode}`); + } else console.warn(`could not find client in game '${this.gamecode}'`); return false; } |