mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove leftover Record Attack lockout warnings
This commit is contained in:
parent
8326292a3f
commit
348ad7c1f0
3 changed files with 7 additions and 12 deletions
|
|
@ -6461,14 +6461,12 @@ void Command_Retry_f(void)
|
|||
*/
|
||||
static void Command_Isgamemodified_f(void)
|
||||
{
|
||||
if (majormods)
|
||||
CONS_Printf("The game has been modified with major addons, so you cannot play Record Attack.\n");
|
||||
else if (savemoddata)
|
||||
CONS_Printf("The game has been modified with an addon with its own save data, so you can play Record Attack and earn medals.\n");
|
||||
if (savemoddata)
|
||||
CONS_Printf("The game has been modified with an addon using its own save data.\n");
|
||||
else if (modifiedgame)
|
||||
CONS_Printf("The game has been modified with only minor addons. You can play Record Attack, earn medals and unlock extras.\n");
|
||||
CONS_Printf("The game has been modified, but is still using Ring Racers save data.\n");
|
||||
else
|
||||
CONS_Printf("The game has not been modified. You can play Record Attack, earn medals and unlock extras.\n");
|
||||
CONS_Printf("The game has not been modified.\n");
|
||||
}
|
||||
|
||||
#ifdef _DEBUG
|
||||
|
|
|
|||
|
|
@ -358,7 +358,7 @@ void G_ClearRecords(void)
|
|||
|
||||
// TODO: Technically, these should only remove time attack records here.
|
||||
// But I'm out of juice for dev (+ literally, just finished some OJ).
|
||||
// The stats need to be cleared in M_ClearStats, and I guess there's
|
||||
// The stats need to be cleared in M_ClearStats, and I guess there's
|
||||
// no perfect place to wipe mapvisited because it's not actually part of
|
||||
// basegame progression... so here's fine for launch. ~toast 100424
|
||||
unloaded_mapheader_t *unloadedmap, *nextunloadedmap = NULL;
|
||||
|
|
@ -652,7 +652,7 @@ static void G_UpdateRecordReplays(void)
|
|||
}
|
||||
}
|
||||
|
||||
// for consistency among messages: this modifies the game and removes savemoddata.
|
||||
// for consistency among messages: this marks the game as modified.
|
||||
void G_SetGameModified(boolean silent, boolean major)
|
||||
{
|
||||
if ((majormods && modifiedgame) || !mainwads || (refreshdirmenu & REFRESHDIR_GAMEDATA)) // new gamedata amnesty?
|
||||
|
|
@ -666,9 +666,6 @@ void G_SetGameModified(boolean silent, boolean major)
|
|||
//savemoddata = false; -- there is literally no reason to do this anymore.
|
||||
majormods = true;
|
||||
|
||||
if (!silent)
|
||||
CONS_Alert(CONS_NOTICE, M_GetText("Game must be restarted to play Record Attack.\n"));
|
||||
|
||||
// If in record attack recording, cancel it.
|
||||
if (modeattacking)
|
||||
M_EndModeAttackRun();
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ void M_AddonsRefresh(void)
|
|||
else if (majormods && !prevmajormods)
|
||||
{
|
||||
S_StartSound(NULL, sfx_s221);
|
||||
message = va("%c%s\x80\nYou've loaded a gameplay-modifying addon.\n\nRecord Attack has been disabled, but you\ncan still play alone in local Multiplayer.\n\nIf you wish to play Record Attack mode, restart the game to disable loaded addons.\n", ('\x80' + (highlightflags>>V_CHARCOLORSHIFT)), refreshdirname);
|
||||
message = va("%c%s\x80\nYou've loaded a gameplay-modifying addon.\nCheck the console log for more info.\n", ('\x80' + (highlightflags>>V_CHARCOLORSHIFT)), refreshdirname);
|
||||
prevmajormods = majormods;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue