From fe712f8861978ec0c87c48e9ba445809b01830fb Mon Sep 17 00:00:00 2001 From: lubiana Date: Sun, 13 Jul 2025 11:32:51 +0200 Subject: [PATCH] lol --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 5f9d14b..c26af16 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -36,7 +36,7 @@ const TIERS: Tier[] = [ ]; const START_MONEY = 6; -const START_UNLOCKED: string[] = []; +const START_UNLOCKED: string[] = ['Start']; function App() { // --- Game State --- @@ -56,7 +56,7 @@ function App() { }[]>([]); // --- Gubble Store State --- const [isStoreOpen, setIsStoreOpen] = useState(false); - const [upgrades, setUpgrades] = useState({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false }); + const [upgrades, setUpgrades] = useState({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false, swipeScratcher: false}); const [upgradeBought, setUpgradeBought] = useState(false); // Ref for scroll container