nyx

The first CODM discrod bot -- cath.exe Template
git clone https://codeberg.org/night0721/nyx
Log | Files | Refs | LICENSE

commit b93358346a9f61b74ce1b0a070d0efcce7ccdb7c
parent 0c160b0621e050836e46c8e207107f5b173a15fd
Author: NK <[email protected]>
Date:   Fri,  3 Feb 2023 22:28:45 +0000

fix

Diffstat:
Mclient/NYX.js | 2+-
Mcommand/Config/premium.js | 4++--
Mcommand/Owner/deny.js | 2+-
Mcommand/Utilities/poll.js | 2+-
Mevents/guild.js | 2+-
5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/client/NYX.js b/client/NYX.js @@ -79,7 +79,7 @@ class NYX extends Client { err(c, e) { const embed = new EmbedBuilder() .setTitle("An Error Occured") - .setColor("RED") + .setColor("Red") .setDescription(`❌ | ${e}`) .setTimestamp() .setFooter({ diff --git a/command/Config/premium.js b/command/Config/premium.js @@ -91,7 +91,7 @@ module.exports = { .setDescription( `Premium removed from **${interaction.guild.name}**! \n` ) - .setColor("RED") + .setColor("Red") .setTimestamp() .setAuthor( interaction.user.tag, @@ -111,7 +111,7 @@ module.exports = { ) .setTimestamp() .setThumbnail(interaction.guild.iconURL({ dynamic: true })) - .setColor("RED"), + .setColor("Red"), ], }); } diff --git a/command/Owner/deny.js b/command/Owner/deny.js @@ -31,7 +31,7 @@ module.exports = { const denyEmbed = new EmbedBuilder() .setAuthor(data.author.name, data.author.iconURL) .setDescription(data.description) - .setColor("RED") + .setColor("Red") .addField("**Status(DENIED)**", denyQuery); suggestEmbed.edit({ embeds: [denyEmbed] }); const user = await client.users.cache.find( diff --git a/command/Utilities/poll.js b/command/Utilities/poll.js @@ -50,7 +50,7 @@ module.exports = { run: async (client, interaction, args) => { const pollCreateEmbed = new EmbedBuilder() .setTitle(`📣 **${args[0]}**`) - .setColor("RED") + .setColor("Red") .setFooter({ text: `Made by ${client.author}`, iconURL: client.user.displayAvatarURL(), diff --git a/events/guild.js b/events/guild.js @@ -46,7 +46,7 @@ client.on("guildDelete", async guild => { }) .setTimestamp() .setThumbnail(guild.iconURL({ dynamic: true })) - .setColor("RED"), + .setColor("Red"), ], }); });