Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Not-Jayden committed Jun 7, 2021
1 parent f97caa6 commit a11ac96
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/hiscores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,11 @@ export function parseStats(csv: string, mode: Gamemode = 'main'): Stats {
return activity;
});

const filteredBosses = mode === 'seasonal'? BOSSES.filter((boss) => boss !== 'tempoross') : BOSSES;

const filteredBosses =
mode === 'seasonal'
? BOSSES.filter((boss) => boss !== 'tempoross')
: BOSSES;

const [leaguePoints] = activityObjects.splice(0, 1);
const bhObjects = activityObjects.splice(0, BH_MODES.length);
const clueObjects = activityObjects.splice(0, CLUES.length);
Expand Down

0 comments on commit a11ac96

Please sign in to comment.