From c9dd133b2db87822aedd72972532ef0f896f5d1b Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 27 Feb 2023 19:56:07 +0000 Subject: [PATCH] play-local-race-difficulty: Make check for Encore option based off the local state (do not attempt to check online unlock) --- src/menus/play-local-race-difficulty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menus/play-local-race-difficulty.c b/src/menus/play-local-race-difficulty.c index 30e6436fc..db9704be2 100644 --- a/src/menus/play-local-race-difficulty.c +++ b/src/menus/play-local-race-difficulty.c @@ -89,7 +89,7 @@ void M_SetupDifficultyOptions(INT32 choice) PLAY_RaceDifficulty[drace_mapselect].status = IT_STRING|IT_CALL; // Level Select (Match Race) PLAY_RaceDifficultyDef.lastOn = drace_mapselect; // Select map select by default. - if (M_SecretUnlocked(SECRET_ENCORE, false)) + if (M_SecretUnlocked(SECRET_ENCORE, true)) { PLAY_RaceDifficulty[drace_encore].status = IT_STRING2|IT_CVAR; // Encore on/off }