Don't force Bump Spark off in Lunatic settings
This commit is contained in:
parent
bcef031c85
commit
4d5cf3c4d8
2 changed files with 1 additions and 12 deletions
|
|
@ -8496,13 +8496,6 @@ static void KartBumpSpark_OnChange(void)
|
|||
return;
|
||||
}
|
||||
|
||||
if ((grandprixinfo.gp == true) && (grandprixinfo.lunaticmode))
|
||||
{
|
||||
CONS_Printf("No, no - lunatics don't need Bump Spark!\n");
|
||||
bumpsparkactive = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
if (leveltime < starttime)
|
||||
{
|
||||
CONS_Printf(M_GetText("Bump spark type has been changed to \"%s\".\n"), cv_kartbumpspark.string);
|
||||
|
|
|
|||
|
|
@ -8230,11 +8230,7 @@ static void P_InitLevelSettings(boolean reloadinggamestate)
|
|||
if (cv_itemlist.value)
|
||||
itemlistactive = true;
|
||||
|
||||
// Lunatics don't need Bump Spark!
|
||||
if ((grandprixinfo.gp == false) || (grandprixinfo.lunaticmode == false))
|
||||
{
|
||||
bumpsparkactive = (UINT8)cv_kartbumpspark.value;
|
||||
}
|
||||
bumpsparkactive = (UINT8)cv_kartbumpspark.value;
|
||||
|
||||
antibumptime = (tic_t)cv_kartantibump.value * TICRATE;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue