Add punctuation in permission denied message
This commit is contained in:
parent
a2cc442477
commit
0d7f1a7b6b
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ module.exports = {
|
||||||
description: 'Change the prefix of the bot in this server.',
|
description: 'Change the prefix of the bot in this server.',
|
||||||
execute({ message, client, args, prefix }) {
|
execute({ message, client, args, prefix }) {
|
||||||
if (!message.member.hasPermission('MANAGE_GUILD')) {
|
if (!message.member.hasPermission('MANAGE_GUILD')) {
|
||||||
message.channel.send("You do not have sufficient permissions(MANAGE_GUILD) to change the prefix of this server")
|
message.channel.send("You do not have sufficient permissions(MANAGE_GUILD) to change the prefix of this server.")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!args[0]) {
|
if (!args[0]) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue