From 1d9f3d9ba719561451c6e08a79a8d58a7f0bf1c0 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Sat, 3 Feb 2024 10:32:29 +1100 Subject: [PATCH] Naughty naughty --- src/commands/pw.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/pw.ts b/src/commands/pw.ts index 2630fb2..be5b983 100644 --- a/src/commands/pw.ts +++ b/src/commands/pw.ts @@ -22,7 +22,7 @@ export default class ProhibitedWords { if (wordExists) return interaction.reply({ephemeral: true, content: `\`${word}\` already exists in the list`}); else { await client.prohibitedWords.insertWord(word); - interaction.reply({ephemeral: true, content: `Successfully added \`${word}\` to the list`}); + interaction.reply({ephemeral: true, content: `Successfully added \`${word}\` to the prohibited words list`}); await this.notify(client, { embeds: [new client.embed() .setColor(client.config.embedColorGreen) @@ -37,7 +37,7 @@ export default class ProhibitedWords { if (!wordExists) return interaction.reply({ephemeral: true, content: `\`${word}\` does not exist in the list`}); else { await client.prohibitedWords.removeWord(word); - interaction.reply({ephemeral: true, content: `Successfully removed \`${word}\` from the list`}); + interaction.reply({ephemeral: true, content: `Successfully removed \`${word}\` from the prohibited words list`}); await this.notify(client, { embeds: [new client.embed() .setColor(client.config.embedColorRed)