From bb8142460e91f1ce8353f1ad084f9064ee2c9a3a Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Mon, 16 Jul 2018 15:37:05 -0400 Subject: [PATCH] Workaround for EVALUATION support for now --- src/g_game.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index b653d259..22c2b1f2 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -3279,6 +3279,9 @@ static void G_DoCompleted(void) else cm = (INT16)(mapheaderinfo[cm]->nextlevel-1); + if (cm == 1100-1) // !!! WHENEVER WE GET GRAND PRIX, GO TO AWARDS MAP INSTEAD !!! + cm = cm+1; + if (cm >= NUMMAPS || cm < 0) // out of range (either 1100-1102 or error) { cm = nextmap; //Start the loop again so that the error checking below is executed.