mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
M_SetupDifficultyOptions: Only show Encore on Difficulty select in Match Race
We have our own plans for Encore GP that I will definitely be addressing before release.
This commit is contained in:
parent
a154b1a565
commit
df4d1fb10a
1 changed files with 5 additions and 5 deletions
|
|
@ -88,6 +88,11 @@ void M_SetupDifficultyOptions(INT32 choice)
|
|||
PLAY_RaceDifficulty[drace_mrracers].status = IT_STRING2|IT_CVAR; // CPU amount
|
||||
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))
|
||||
{
|
||||
PLAY_RaceDifficulty[drace_encore].status = IT_STRING2|IT_CVAR; // Encore on/off
|
||||
}
|
||||
}
|
||||
else // GP
|
||||
{
|
||||
|
|
@ -95,11 +100,6 @@ void M_SetupDifficultyOptions(INT32 choice)
|
|||
PLAY_RaceDifficulty[drace_cupselect].status = IT_STRING|IT_CALL; // Level Select (GP)
|
||||
PLAY_RaceDifficultyDef.lastOn = drace_cupselect; // Select cup select by default.
|
||||
}
|
||||
|
||||
if (M_SecretUnlocked(SECRET_ENCORE, false))
|
||||
{
|
||||
PLAY_RaceDifficulty[drace_encore].status = IT_STRING2|IT_CVAR; // Encore on/off
|
||||
}
|
||||
}
|
||||
|
||||
void M_SetupDifficultySelect(INT32 choice)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue