This commit is contained in:
NK 2023-02-03 22:28:45 +00:00
parent 0c160b0621
commit b93358346a
5 changed files with 6 additions and 6 deletions

View file

@ -79,7 +79,7 @@ class NYX extends Client {
err(c, e) { err(c, e) {
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setTitle("An Error Occured") .setTitle("An Error Occured")
.setColor("RED") .setColor("Red")
.setDescription(`❌ | ${e}`) .setDescription(`❌ | ${e}`)
.setTimestamp() .setTimestamp()
.setFooter({ .setFooter({

View file

@ -91,7 +91,7 @@ module.exports = {
.setDescription( .setDescription(
`Premium removed from **${interaction.guild.name}**! \n` `Premium removed from **${interaction.guild.name}**! \n`
) )
.setColor("RED") .setColor("Red")
.setTimestamp() .setTimestamp()
.setAuthor( .setAuthor(
interaction.user.tag, interaction.user.tag,
@ -111,7 +111,7 @@ module.exports = {
) )
.setTimestamp() .setTimestamp()
.setThumbnail(interaction.guild.iconURL({ dynamic: true })) .setThumbnail(interaction.guild.iconURL({ dynamic: true }))
.setColor("RED"), .setColor("Red"),
], ],
}); });
} }

View file

@ -31,7 +31,7 @@ module.exports = {
const denyEmbed = new EmbedBuilder() const denyEmbed = new EmbedBuilder()
.setAuthor(data.author.name, data.author.iconURL) .setAuthor(data.author.name, data.author.iconURL)
.setDescription(data.description) .setDescription(data.description)
.setColor("RED") .setColor("Red")
.addField("**Status(DENIED)**", denyQuery); .addField("**Status(DENIED)**", denyQuery);
suggestEmbed.edit({ embeds: [denyEmbed] }); suggestEmbed.edit({ embeds: [denyEmbed] });
const user = await client.users.cache.find( const user = await client.users.cache.find(

View file

@ -50,7 +50,7 @@ module.exports = {
run: async (client, interaction, args) => { run: async (client, interaction, args) => {
const pollCreateEmbed = new EmbedBuilder() const pollCreateEmbed = new EmbedBuilder()
.setTitle(`📣 **${args[0]}**`) .setTitle(`📣 **${args[0]}**`)
.setColor("RED") .setColor("Red")
.setFooter({ .setFooter({
text: `Made by ${client.author}`, text: `Made by ${client.author}`,
iconURL: client.user.displayAvatarURL(), iconURL: client.user.displayAvatarURL(),

View file

@ -46,7 +46,7 @@ client.on("guildDelete", async guild => {
}) })
.setTimestamp() .setTimestamp()
.setThumbnail(guild.iconURL({ dynamic: true })) .setThumbnail(guild.iconURL({ dynamic: true }))
.setColor("RED"), .setColor("Red"),
], ],
}); });
}); });