diff --git a/app/src/components/Army.tsx b/app/src/components/Army.tsx index dd0e572..7cf9c74 100644 --- a/app/src/components/Army.tsx +++ b/app/src/components/Army.tsx @@ -106,7 +106,7 @@ const Army = () => { const setAvailabilities = useCallback(() => { if (isRegistered) { - const totalMinted = player?.total_minted ?? BigInt(0); + const totalMinted = (player?.total_minted ?? BigInt(0)) + (balanceCount.current - (balance ?? BigInt(0))); const n_units: Record = { 0: army?.moloch_denier.level ?? 0, 1: army?.apprentice.level ?? 0,