diff --git a/src/app/page.tsx b/src/app/page.tsx index 4379eb1..fce81ff 100755 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { useEffect, useState, lazy, Suspense } from 'react'; import { useGameStore, useGameLoop, fmt, getFloorElement, computeMaxMana, computeRegen, computeClickMana, getMeditationBonus, getIncursionStrength, canAffordSpellCost } from '@/lib/game/store'; +import { ActivityLogEntry } from '@/lib/game/types'; import { getActiveEquipmentSpells, getTotalDPS } from '@/lib/game/computed-stats'; import { ELEMENTS, GUARDIANS, SPELLS_DEF, PRESTIGE_DEF, getStudySpeedMultiplier, getStudyCostMultiplier } from '@/lib/game/constants'; @@ -271,7 +272,9 @@ export default function ManaLoopGame() { disabled={store.isDescending} > - {store.isDescending ? 'Descending...' : 'Begin Descent'} + {store.isDescending ? 'Descending' : + store.climbDirection === 'up' ? 'Climbing' : + 'Begin Descent'} {store.currentFloor === 1 ? (