This commit is contained in:
Renan LE CARO 2025-04-22 13:41:39 +02:00
parent 3d3e7805d6
commit 16911620c0
16 changed files with 55 additions and 95 deletions

View file

@ -4,7 +4,6 @@ import { t } from "./i18n/i18n";
import { icons, upgrades } from "./loadGameData";
import { getSettingValue, getTotalScore, setSettingValue } from "./settings";
import { isOptionOn } from "./options";
import { notStartingPerk } from "./upgrades";
export function startingPerkMenuButton() {
return {
@ -20,7 +19,6 @@ export function startingPerkMenuButton() {
export function isBlackListedForStart(u: Upgrade) {
return !!(
notStartingPerk.includes(u.id) ||
u.requires ||
u.threshold > getTotalScore()
);