diff options
Diffstat (limited to 'commands.ts')
| -rw-r--r-- | commands.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/commands.ts b/commands.ts index 2f5598f..7005165 100644 --- a/commands.ts +++ b/commands.ts @@ -15,6 +15,8 @@ import { type GuildBasedChannel, } from "discord.js"; +import { celebrationMessage } from "./index.ts"; + export let slashCommands = [ { slashCommand: new SlashCommandBuilder() @@ -309,7 +311,7 @@ async function solveThread(interaction: ChatInputCommandInteraction) { await channel.setAppliedTags(channel.appliedTags.filter(tag => tag !== unsolvedTag.id)); } - await interaction.reply("<:club_mate:889629353934213210> 🎉"); + await interaction.reply(celebrationMessage); } async function handleJoinCtfButton(interaction: ButtonInteraction, forumId: string) { |
