diff --git a/src/commands/subcommands/season/end.ts b/src/commands/subcommands/season/end.ts index 4e10054..0a18449 100644 --- a/src/commands/subcommands/season/end.ts +++ b/src/commands/subcommands/season/end.ts @@ -22,7 +22,7 @@ export default { if (currentSeason === null) { await interaction.reply({ - content: "There's no ongoing RMFP season to end. Have you run `/rmfp start season`?", + content: "There's no ongoing RMFP season to end. Have you run `/rmfp season start`?", ephemeral: true, }); return; diff --git a/src/commands/subcommands/season/start.ts b/src/commands/subcommands/season/start.ts index 26c1240..9604b82 100644 --- a/src/commands/subcommands/season/start.ts +++ b/src/commands/subcommands/season/start.ts @@ -4,7 +4,7 @@ import { prisma } from '../../../common/prisma.js'; import type { SubCommand } from '../index.js'; /** - * Begins a new RMFP season. Informs the user if one is ongoing that they must invoke `/rmfp end_season` first. + * Begins a new RMFP season. Informs the user if one is ongoing that they must invoke `/rmfp season end` first. */ export default { subCommandOption: (subCommand) => subCommand.setName('start').setDescription('Starts a new season of RMFP!'), @@ -24,7 +24,7 @@ export default { // We can't have two seasons of RMFP going at once, the admin must end the current season first. await interaction.reply({ content: - "A new season of RMFP can't be started until the current season has been ended! Use `/rmfp endSeason` to end the current season.", + "A new season of RMFP can't be started until the current season has been ended! Use `/rmfp season end` to end the current season.", ephemeral: true, }); return; diff --git a/src/commands/subcommands/week/end.ts b/src/commands/subcommands/week/end.ts index cf9a956..b1e1bb8 100644 --- a/src/commands/subcommands/week/end.ts +++ b/src/commands/subcommands/week/end.ts @@ -77,7 +77,7 @@ export default { if (currentSeason === null) { await interaction.reply({ content: - "There's no RMFP season ongoing. You need to start a season (`/rmfp start season`) before running this command.", + "There's no RMFP season ongoing. You need to start a season (`/rmfp season start`) before running this command.", ephemeral: true, }); return; diff --git a/src/commands/subcommands/week/start.ts b/src/commands/subcommands/week/start.ts index a77cb23..db8c4be 100644 --- a/src/commands/subcommands/week/start.ts +++ b/src/commands/subcommands/week/start.ts @@ -35,7 +35,7 @@ export default { if (currentSeason === null) { await interaction.reply({ content: - "There's no RMFP season ongoing. You need to start a season (`/rmfp start season`) before running this command.", + "There's no RMFP season ongoing. You need to start a season (`/rmfp season start`) before running this command.", ephemeral: true, }); return;