Fixed Rules Command

This commit is contained in:
Ahmad 2024-09-02 19:06:03 -04:00
parent fa581583a5
commit c4b2bb3a3f
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF

View file

@ -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] });
},
};