Skip to content

Commit

Permalink
Clean up collections text for similar tiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Oct 5, 2024
1 parent 282fc60 commit 0896fa3
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 @@ -191,7 +191,7 @@ function recommendations(crew: CrewFromBehold[], openCols?: string[]) {
}

let suffix = ".";
if (Math.abs(best[0].crew.bigbook_tier - best[1].crew.bigbook_tier) <= 1 &&
if (!title.includes("collections") && Math.abs(best[0].crew.bigbook_tier - best[1].crew.bigbook_tier) <= 1 &&
Math.abs(best[0].crew.bigbook_tier - best[2].crew.bigbook_tier) <= 1 &&
Math.abs(best[1].crew.bigbook_tier - best[2].crew.bigbook_tier) <= 1) {
suffix = " but check their links as tiers are similar."
Expand Down

0 comments on commit 0896fa3

Please sign in to comment.