a bit less logging

This commit is contained in:
Gavin McDonald
2025-05-08 18:17:55 -04:00
parent 8bf8b4c5cb
commit 2108324cf4

View File

@@ -213,7 +213,7 @@ export default class GameStore {
} }
deleteGame(game: GameState): void { deleteGame(game: GameState): void {
console.log(Date.now(), 'DELETE', game); console.log(Date.now(), 'DELETE', game.dmID, game.spectatorID);
this.dms.delete(game.dmID); this.dms.delete(game.dmID);
this.spectators.delete(game.spectatorID); this.spectators.delete(game.spectatorID);