discord_bot/commands/prefix.js
SileNce5k 5b98166a2b
Add check for permissions on prefix command
Now only people with the MANAGE_GUILD permission can edit the prefix of
that specific server.
2021-03-13 04:30:16 +01:00

20 lines
No EOL
811 B
JavaScript

const parseMention = require("../util/parseMention");
const setServerPrefix = require("../util/setServerPrefix");
module.exports = {
name: 'prefix',
description: 'Change the prefix of the bot in this server.',
execute({ message, client, args, prefix }) {
if (!message.member.hasPermission('MANAGE_GUILD')) {
message.channel.send("You do not have sufficient permissions(MANAGE_GUILD) to change the prefix of this server")
return;
}
if (!args[0]) {
message.channel.send(`To change the prefix, execute \`${prefix}prefix <newPrefix>\``);
return;
}else{
setServerPrefix(client, args[0], message.guild.id)
message.channel.send(`The prefix for this server is now set to ${args[0]}`)
}
}
};