mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-22 16:02:29 +00:00
Fix the condition for non-net unlock check with M_SecretUnlocked to not trip if the host has it unlocked
This commit is contained in:
parent
803490d7aa
commit
0211bed1eb
1 changed files with 1 additions and 1 deletions
|
|
@ -756,7 +756,7 @@ boolean M_SecretUnlocked(INT32 type, boolean local)
|
||||||
if (unlockables[i].type != type)
|
if (unlockables[i].type != type)
|
||||||
continue;
|
continue;
|
||||||
if ((local && gamedata->unlocked[i])
|
if ((local && gamedata->unlocked[i])
|
||||||
|| M_CheckNetUnlockByID(i))
|
|| (!local && M_CheckNetUnlockByID(i)))
|
||||||
continue;
|
continue;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue