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) {
const embed = new EmbedBuilder()
.setTitle("An Error Occured")
.setColor("RED")
.setColor("Red")
.setDescription(`❌ | ${e}`)
.setTimestamp()
.setFooter({

View file

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

View file

@ -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(

View file

@ -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(),

View file

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