2020-03-02 19:38:42 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'message',
|
|
|
|
async execute(client, msg, Discord) {
|
|
|
|
if (msg.author.bot || !msg.guild) return;
|
2020-03-08 14:22:00 +00:00
|
|
|
let prefix = client.config.prefix;
|
2020-03-02 19:38:42 +00:00
|
|
|
const args = msg.content.slice(prefix.length).split(' ');
|
|
|
|
if (!msg.content.startsWith(prefix)) return;
|
|
|
|
if (!args[0]) return;
|
|
|
|
const commandName = args[0].toLowerCase();
|
2020-03-22 15:10:46 +00:00
|
|
|
if (commandName === 'none') return;
|
2020-03-02 19:38:42 +00:00
|
|
|
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)) || client.commandAliases.get(commandName);
|
|
|
|
if (!command && msg.content !== `${prefix}`) return;
|
2020-03-12 09:59:05 +00:00
|
|
|
const permissions = msg.channel.permissionsFor(msg.client.user);
|
2020-03-12 22:53:23 +00:00
|
|
|
if (!permissions.has('EMBED_LINKS')) return msg.channel.send(client.messages.noPermsEmbed);
|
2020-03-12 09:59:05 +00:00
|
|
|
try {
|
2020-03-22 15:10:46 +00:00
|
|
|
command.execute(msg, args, client, Discord, command);
|
2020-03-12 09:59:05 +00:00
|
|
|
} catch (error) {
|
2020-03-12 22:53:23 +00:00
|
|
|
msg.reply(client.messages.runningCommandFailed);
|
2020-03-12 09:59:05 +00:00
|
|
|
console.error(error);
|
|
|
|
}
|
2020-03-02 19:38:42 +00:00
|
|
|
}
|
|
|
|
}
|