mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-19 08:41:25 +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
c67e7f1709
commit
01f5787e51
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…
Reference in a new issue