Merge branch 'special-gp-practice' into 'master'

Make Special Mode time attack match Normal GP behaviour, as requested for practice

See merge request KartKrew/Kart!1956
This commit is contained in:
SteelT 2024-02-27 01:53:23 +00:00
commit 3a8beda3b4

View file

@ -7678,7 +7678,11 @@ static void P_InitLevelSettings(void)
|| tutorialchallenge == TUTORIALSKIP_INPROGRESS
)
{
if (gametyperules & GTR_CIRCUIT)
if ((gametyperules & GTR_CATCHER) && encoremode == false)
{
gamespeed = KARTSPEED_NORMAL;
}
else if (gametyperules & GTR_CIRCUIT)
{
gamespeed = KARTSPEED_HARD;
}