Skip to content

Commit

Permalink
Simplify text when only one realistic option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Oct 5, 2024
1 parent 5c94a91 commit c83316e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/beholdcalc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function recommendations(crew: CrewFromBehold[], openCols?: string[]) {
}

if (best[0].crew.bigbook_tier >= 7) {
if (colBest?.length && !colBest.every(c => cols(c) === 0)) {
if (starBest.length > 1 && colBest?.length && !colBest.every(c => cols(c) === 0)) {
printPickCols(colBest);
} else if (starBest.length > 0) {
title = `Add a star to ${starBest[0].crew.name}`;
Expand Down

0 comments on commit c83316e

Please sign in to comment.