fix: correct quickStart prestige upgrade property name in resetMana
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m4s

This commit is contained in:
2026-06-10 21:51:03 +02:00
parent 7440b63b2e
commit 092e6a3d52
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ export const useManaStore = create<ManaStore>()(
resetMana: (prestigeUpgrades: Record<string, number>) => {
const elementMax = 10 + (prestigeUpgrades.elementalAttune || 0) * 25;
const startingMana = 10 + (prestigeUpgrades.manaStart || 0) * 10;
const startingMana = 10 + (prestigeUpgrades.quickStart || 0) * 10;
set({ rawMana: startingMana, meditateTicks: 0, totalManaGathered: 0, elements: makeInitialElements(elementMax, prestigeUpgrades), elementRegen: {} });
},
}),