diff --git a/src/index.ts b/src/index.ts index 3dd9a68..cf2f633 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,6 +18,7 @@ const askForGrinders = async (quest: QuestResult) => { throw "Invalid admin channel provided"; const top10 = quest.participants + .filter((x) => !env.QUEST_EXCLUDE.includes(x.username)) .sort((a, b) => b.xp - a.xp) .slice(0, 10) .map((p, i) => `${i + 1}. ${p.username} - ${p.xp}xp`)