From 6e342e22254ef0e3a4c0b1ecd218cc9d22566c57 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 24 Feb 2023 20:22:29 +0100 Subject: [PATCH] fixed asking to play again on player input after tape with game over --- src/game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.c b/src/game.c index edf9686c..a2afc3e3 100644 --- a/src/game.c +++ b/src/game.c @@ -11904,7 +11904,7 @@ static void GameActionsExt(void) TapeRecordAction(tape_action); // remember if game was played (especially after tape stopped playing) - if (!tape.playing && summarized_player_action) + if (!tape.playing && summarized_player_action && !checkGameFailed()) game.GamePlayed = TRUE; #if USE_NEW_PLAYER_ASSIGNMENTS -- 2.34.1