diff --git a/src/system/unlockables.ts b/src/system/unlockables.ts index 81f390afdb0..80a12e2df11 100644 --- a/src/system/unlockables.ts +++ b/src/system/unlockables.ts @@ -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) {