mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-25 03:41:02 +00:00
Quick fix for banana cheat not showing all unlockables
Plus, this is generally better, as a mod could let you unlock stuff "out-of-order"
This commit is contained in:
parent
001e2aa42c
commit
8024ad74b5
1 changed files with 1 additions and 1 deletions
|
@ -5096,7 +5096,7 @@ static void M_DrawChecklist(void)
|
|||
{
|
||||
if (unlockables[i].name[0] == 0 || unlockables[i].nochecklist
|
||||
|| !unlockables[i].conditionset || unlockables[i].conditionset > MAXCONDITIONSETS
|
||||
|| !M_Achieved(unlockables[i].showconditionset - 1))
|
||||
|| (!M_Achieved(unlockables[i].showconditionset - 1) && !unlockables[i].unlocked))
|
||||
continue;
|
||||
|
||||
++line;
|
||||
|
|
Loading…
Reference in a new issue