Skip to content

Commit

Permalink
revert change until further research
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Oct 7, 2023
1 parent bab0a6f commit d1424ca
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/commands/cheapestfffe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ async function asyncHandler(
let profileItems = profile.player.character.items;
let candidatesForImmortalisation = profileCrew.filter((c: any) => {
if (c.level === 100) {
let needed = getNeededItems(c.symbol, c.level);
if (!needed) {
return false;
}
return true;
// let needed = getNeededItems(c.symbol, c.level);
// if (!needed) {
// return false;
// }
// return true;
return false;
}
if (c.rarity === crew.find((d) => d.symbol === c.symbol)?.max_rarity) {
return true;
Expand Down

0 comments on commit d1424ca

Please sign in to comment.