mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-31 20:22:40 +00:00
Unlock all secrets for dedicated
If wanted we can just add dedicated checks to Encore & Hard Mode, but I figured this would be quicker and more future-proof.
This commit is contained in:
parent
2485e25268
commit
4edcc94c08
1 changed files with 6 additions and 0 deletions
|
|
@ -535,6 +535,12 @@ UINT8 M_AnySecretUnlocked(void)
|
|||
UINT8 M_SecretUnlocked(INT32 type)
|
||||
{
|
||||
INT32 i;
|
||||
|
||||
#if 1
|
||||
if (dedicated)
|
||||
return true;
|
||||
#endif
|
||||
|
||||
for (i = 0; i < MAXUNLOCKABLES; ++i)
|
||||
{
|
||||
if (unlockables[i].type == type && unlockables[i].unlocked)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue