Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
alainbryden committed Oct 28, 2024
1 parent 9292ee6 commit 92d237d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faction-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ async function managePurchaseableAugs(ns, outputRows, accessibleAugs) {
nextNfLevel++;
nfPurchased++;
}
log(ns, `With ${formatMoney(budget)}, can afford to purchase ${nfPurchased} level${nfPurchased > 1 ? 's' : ''} of ${strNF}.` +
log(ns, `With ${formatMoney(budget)}, can afford to purchase ${nfPurchased} level${nfPurchased == 1 ? '' : 's'} of ${strNF}.` +
` New total cost: ${getCostString(totalAugCost, totalRepCost)}`);
manageFilteredSubset(ns, outputRows, `(${purchaseableAugs.length - nfPurchased} Augs + ${nfPurchased} NF)`, purchaseableAugs, true, false, false);
if (nextUpAug) outputRows.push(nextUpAug);
Expand Down

0 comments on commit 92d237d

Please sign in to comment.