Skip to content

Commit

Permalink
simplify expression
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Jan 20, 2024
1 parent c62194c commit e126d20
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/commands/cheapestfffe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,7 @@ async function asyncHandler(
//.setFooter({ text: `${matched.name} is in ${matched.collections.length === 0 ? 'no collections' : `the following collections: ${matched.collections.join(', ')}`}` });
});

let skirmtext = '';
if (skirmish) {
skirmtext = '[Skirmish Mode] ';
}
let skirmtext = skirmish ? '[Skirmish Mode] ' : '';

if (fuse) {
sendAndCache(message,
Expand Down

0 comments on commit e126d20

Please sign in to comment.