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:
parent
f5b49d812d
commit
3095ecebf8
|
@ -17,7 +17,7 @@ export function isUnlocked(unlockable: Unlockables, gameData: GameData): boolean
|
||||||
if (Overrides.DISABLE_UNLOCK_OVERRIDE.includes(unlockable)) {
|
if (Overrides.DISABLE_UNLOCK_OVERRIDE.includes(unlockable)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return !!gameData.unlocks[Unlockables.MINI_BLACK_HOLE];
|
return gameData.unlocks[unlockable];
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getUnlockableName(unlockable: Unlockables) {
|
export function getUnlockableName(unlockable: Unlockables) {
|
||||||
|
|
Loading…
Reference in New Issue