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