Skip to content

Commit

Permalink
[update] added server name to the prefix messsage
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Oct 5, 2021
1 parent 93f0838 commit 1c8d92f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions commands/Config/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`✅ Bot Prefix Resetted to ` + "`" + `${prefix}` + "`"
`✅ Bot Prefix Resetted to ` +
"`" +
`${prefix}` +
"`" +
` for ${message.guild.name}`
),
],
});
Expand All @@ -49,7 +53,11 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`✅ Bot Prefix set to ` + "`" + `${args[0]}` + "`"
`✅ Bot Prefix set to ` +
"`" +
`${args[0]}` +
"`" +
` for ${message.guild.name}`
),
],
});
Expand Down

0 comments on commit 1c8d92f

Please sign in to comment.