From 3095ecebf8abc5adf7e524718a4d4e999166c6c8 Mon Sep 17 00:00:00 2001 From: RedstonewolfX <108761527+RedstonewolfX@users.noreply.github.com> Date: Tue, 27 Aug 2024 14:09:26 -0400 Subject: [PATCH] Update src/system/unlockables.ts Fixing my silly typo Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com> --- src/system/unlockables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {