diff --git a/src/game/gameState.ts b/src/game/gameState.ts index 1208454..18e682d 100644 --- a/src/game/gameState.ts +++ b/src/game/gameState.ts @@ -58,6 +58,7 @@ class GameState { * Saves the current game state to the database. */ public async save() { + console.log(`Saving game state to database... Phase: ${this.phase} SubPhase: ${this.subPhase} Cash: ${this.cashLeftAfterInitialPurchases}`); await DatabaseService.saveGameState(this.authorId, this); }