diff --git a/src/commands/build_matches.ts b/src/commands/build_matches.ts index 225daf6..cb8636d 100644 --- a/src/commands/build_matches.ts +++ b/src/commands/build_matches.ts @@ -6,7 +6,7 @@ import { import { buildMatchSheet } from "../lib/saver"; export const data = new SlashCommandBuilder() - .setName("build_match_sheet") + .setName("build_match_sheet_2") .setDescription("Copies the match schedule to the match sheet") .setDefaultMemberPermissions(PermissionFlagsBits.ManageRoles) .setDMPermission(false); diff --git a/src/commands/generate_schedule.ts b/src/commands/generate_schedule.ts index b3f1ff7..7f4fd97 100644 --- a/src/commands/generate_schedule.ts +++ b/src/commands/generate_schedule.ts @@ -11,7 +11,7 @@ import fetch from "node-fetch"; import logger from "../config/logger"; export const data = new SlashCommandBuilder() - .setName("generate_schedule") + .setName("generate_schedule_2") .setDescription("Generates a new match schedule for an event") .addRoleOption((option) => option diff --git a/src/commands/make_playoff_channels.ts b/src/commands/make_playoff_channels.ts index 2ed6a92..6e06480 100644 --- a/src/commands/make_playoff_channels.ts +++ b/src/commands/make_playoff_channels.ts @@ -7,7 +7,7 @@ import { import logger from "../config/logger"; export const data = new SlashCommandBuilder() - .setName("make_playoff_channels") + .setName("make_playoff_channels_2") .setDescription("Creates voice channels for each alliance in the playoffs") .setDefaultMemberPermissions(PermissionFlagsBits.ManageRoles) .addIntegerOption((option) => diff --git a/src/commands/ping.ts b/src/commands/ping.ts index 45b7731..36d0a45 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -4,7 +4,7 @@ import { } from "discord.js"; export const data = new SlashCommandBuilder() - .setName("ping") + .setName("ping_2") .setDescription("Replies with Pong!"); export const execute = async (interaction: ChatInputCommandInteraction) => { diff --git a/src/commands/reload.ts b/src/commands/reload.ts index c06270a..641d54f 100644 --- a/src/commands/reload.ts +++ b/src/commands/reload.ts @@ -6,7 +6,7 @@ import { import logger from "../config/logger"; export const data = new SlashCommandBuilder() - .setName("reload") + .setName("reload_2") .setDescription("Reloads a command.") .setDefaultMemberPermissions(PermissionFlagsBits.Administrator) .setDMPermission(false) diff --git a/src/commands/save_match_result.ts b/src/commands/save_match_result.ts index 0dff4f0..1eaa119 100644 --- a/src/commands/save_match_result.ts +++ b/src/commands/save_match_result.ts @@ -16,7 +16,7 @@ import { setMatchNumber } from "../lib/field"; import logger from "../config/logger"; export const data = new SlashCommandBuilder() - .setName("save_match_results") + .setName("save_match_results_2") .setDescription( "Save the results of a completed match, and get ready for the next one" ) diff --git a/src/commands/summon_for_match.ts b/src/commands/summon_for_match.ts index da17068..29a8acc 100644 --- a/src/commands/summon_for_match.ts +++ b/src/commands/summon_for_match.ts @@ -8,7 +8,7 @@ import { summonPlayersForMatch } from "../lib/summonPlayers"; import { setMatchNumber } from "../lib/field"; export const data = new SlashCommandBuilder() - .setName("summon_for_match") + .setName("summon_for_match_2") .setDescription("Summon players into voice channels for a match") .setDefaultMemberPermissions(PermissionFlagsBits.ManageRoles) .setDMPermission(false)