Fix off-by-one error in down-down-down input

This commit is contained in:
toaster 2025-08-28 20:21:59 +01:00
parent 8ccf5f3b89
commit b5b2652255

View file

@ -910,7 +910,7 @@ void F_IntroTicker(void)
ResetSkipSequences();
CV_StealthSetValue(&cv_kartbot, 9);
CV_StealthSetValue(&cv_maxplayers, 8);
D_MapChange(G_RandMap(TOL_RACE, UINT16_MAX-1, true, false, NULL), GT_RACE, (cv_kartencore.value == 1), true, 0, false, false);
D_MapChange(G_RandMap(TOL_RACE, UINT16_MAX-1, true, false, NULL)+1, GT_RACE, (cv_kartencore.value == 1), true, 0, false, false);
return;
}