Update src/system/unlockables.ts

Fixing my silly typo

Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com>
This commit is contained in:
RedstonewolfX 2024-08-27 14:09:26 -04:00 committed by GitHub
parent f5b49d812d
commit 3095ecebf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export function isUnlocked(unlockable: Unlockables, gameData: GameData): boolean
if (Overrides.DISABLE_UNLOCK_OVERRIDE.includes(unlockable)) {
return false;
}
return !!gameData.unlocks[Unlockables.MINI_BLACK_HOLE];
return gameData.unlocks[unlockable];
}
export function getUnlockableName(unlockable: Unlockables) {