fix
This commit is contained in:
parent
0c160b0621
commit
b93358346a
5 changed files with 6 additions and 6 deletions
|
@ -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({
|
||||
|
|
|
@ -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"),
|
||||
],
|
||||
});
|
||||
}
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -46,7 +46,7 @@ client.on("guildDelete", async guild => {
|
|||
})
|
||||
.setTimestamp()
|
||||
.setThumbnail(guild.iconURL({ dynamic: true }))
|
||||
.setColor("RED"),
|
||||
.setColor("Red"),
|
||||
],
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue