From 7426ddaf744bf1b65a39314c10661c7963248dbd Mon Sep 17 00:00:00 2001 From: Bhavnoor Singh Saroya Date: Sat, 16 Aug 2025 20:33:22 -0700 Subject: [PATCH] fix spacing this totally was not an ai commit --- cli/commands/play.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/commands/play.go b/cli/commands/play.go index 5456cfa..5f8dfdc 100644 --- a/cli/commands/play.go +++ b/cli/commands/play.go @@ -221,6 +221,8 @@ func (gameState *GameState) Run() error { if gameState.outputFile != nil { // insert initial game start into database + // direct db call since this is the first event + bytes, err := json.Marshal(boardGame) if err != nil { @@ -362,6 +364,7 @@ func (gameState *GameState) Run() error { if gameState.outputFile != nil { // write frames array to db + // insert game end into database bytes, err := json.Marshal(endEvent) if err != nil {