From c4b2bb3a3f85de5e755effeb6b5909328ba3006a Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:06:03 -0400 Subject: [PATCH] Fixed Rules Command --- source/commands/rules.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/source/commands/rules.ts b/source/commands/rules.ts index 70f56f0..1d96ab0 100644 --- a/source/commands/rules.ts +++ b/source/commands/rules.ts @@ -104,12 +104,7 @@ const command: Command = { .setName("rules") .setDescription("Sends the server rules"), execute: async (interaction) => { - const channel = interaction.channel; - channel?.send({ embeds: [rulesEmbed] }); - await interaction.reply({ - content: "The Rules Were Sent in the Current Channel", - ephemeral: true, - }); + await interaction.reply({ embeds: [rulesEmbed] }); }, };