mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 13:21:10 +00:00
Turns out your unlocks are delayed a little bit! The medals are saved, but the unlocks due to the medals aren't immediate... which is a problem for Hell Attack, since there's no indication you need to play another level for it all to work!!!
This commit is contained in:
parent
3832ffcc42
commit
de02c0bca9
1 changed files with 3 additions and 0 deletions
|
@ -712,6 +712,9 @@ static void Y_UpdateRecordReplays(void)
|
||||||
if ((earnedEmblems = M_CheckLevelEmblems()))
|
if ((earnedEmblems = M_CheckLevelEmblems()))
|
||||||
CONS_Printf(M_GetText("\x82" "Earned %hu medal%s for Record Attack records.\n"), (UINT16)earnedEmblems, earnedEmblems > 1 ? "s" : "");
|
CONS_Printf(M_GetText("\x82" "Earned %hu medal%s for Record Attack records.\n"), (UINT16)earnedEmblems, earnedEmblems > 1 ? "s" : "");
|
||||||
|
|
||||||
|
if (M_UpdateUnlockablesAndExtraEmblems(false))
|
||||||
|
S_StartSound(NULL, sfx_ncitem);
|
||||||
|
|
||||||
// SRB2Kart - save here so you NEVER lose your earned times/medals.
|
// SRB2Kart - save here so you NEVER lose your earned times/medals.
|
||||||
G_SaveGameData(false);
|
G_SaveGameData(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue