Skip to content

Commit

Permalink
Fix summon for match in playoffs
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBottone committed May 17, 2023
1 parent f30af98 commit 1bf1c08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/commands/summon_for_match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ export const execute = async (interaction: ChatInputCommandInteraction) => {
const res = await summonPlayersForMatch(
matchType,
secondMatchNumber,
interaction.client.scheduleSheet,
matchType === "Qual"
? interaction.client.scheduleSheet
: interaction.client.playoffScheduleSheet,
interaction.guild,
true
);
Expand Down

0 comments on commit 1bf1c08

Please sign in to comment.