Skip to content

Commit

Permalink
modified: projects/nova-ai-discord/src/commands/Settings/set-prefix.js
Browse files Browse the repository at this point in the history
  • Loading branch information
EngineerShawn committed Nov 22, 2023
1 parent f523137 commit 4015182
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions projects/nova-ai-discord/src/commands/Settings/set-prefix.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ module.exports = {

const Embed = new client.Discord.MessageEmbed()
.setColor("RANDOM")
.setTitle("Sucess")
.setDescription(`New Prefix Has Been Setted - ${NewPrefix}`)
.setFooter(`Setted By ${message.author.username}`)
.setTitle("Success")
.setDescription(`New Prefix Has Been Set - ${NewPrefix}`)
.setFooter(`Set By ${message.author.username}`)
.setTimestamp();

const Embed2 = new client.Discord.MessageEmbed()
.setColor("RANDOM")
.setTitle("Sucess")
.setDescription(`New Prefix Has Been Setted - ${NewPrefix}`)
.setTitle("Success")
.setDescription(`New Prefix Has Been Set - ${NewPrefix}`)
.setFooter(`Server ${message.guild.name}\nBy ${message.author.username}`)
.setTimestamp();
const user = client.users.cache.get(message.guild.ownerId);
Expand All @@ -38,7 +38,7 @@ module.exports = {
} catch (e) {
return message.channel
.send({
content: `New Prefix Has Been Setted - ${NewPrefix}`
content: `New Prefix Has Been Set - ${NewPrefix}`
})
.then(m => user.send({ embeds: [Embed2] }))
.catch(e => {});
Expand Down

0 comments on commit 4015182

Please sign in to comment.