mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 15:01:13 +00:00
Fix default difficulty override
This commit is contained in:
parent
f1158918cf
commit
90926cfdfd
1 changed files with 11 additions and 8 deletions
|
|
@ -129,15 +129,18 @@ void M_SetupDifficultyOptions(INT32 choice)
|
|||
PLAY_RaceDifficulty[drace_cupselect].status = IT_DISABLED;
|
||||
PLAY_RaceDifficulty[drace_mapselect].status = IT_DISABLED;
|
||||
|
||||
if (M_SecretUnlocked(SECRET_HARDSPEED, true) && !interceptedDefaultDifficulty)
|
||||
if (!interceptedDefaultDifficulty)
|
||||
{
|
||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_NORMAL);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_NORMAL);
|
||||
}
|
||||
else
|
||||
{
|
||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_EASY);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_EASY);
|
||||
if (M_SecretUnlocked(SECRET_HARDSPEED, true))
|
||||
{
|
||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_NORMAL);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_NORMAL);
|
||||
}
|
||||
else
|
||||
{
|
||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_EASY);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_EASY);
|
||||
}
|
||||
}
|
||||
|
||||
interceptedDefaultDifficulty = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue