✨ Bug fixes & update (v2.0.0)
This commit is contained in:
@@ -1,27 +1,20 @@
|
|||||||
const config = require(`../config/bot.json`)
|
const config = require("../config/bot.json");
|
||||||
|
|
||||||
module.exports = (client, message) => {
|
module.exports = (client, message) => {
|
||||||
|
|
||||||
//Ignore all bots
|
|
||||||
if (message.author.bot) return;
|
if (message.author.bot) return;
|
||||||
|
|
||||||
//Prefix
|
|
||||||
let prefix = config.prefix
|
let prefix = config.prefix
|
||||||
|
|
||||||
//Ignore messages not starting with the prefix (in config.json)
|
|
||||||
if (message.content.indexOf(prefix) !== 0) return;
|
if (message.content.indexOf(prefix) !== 0) return;
|
||||||
|
|
||||||
//Our standard argument/command name definition.
|
|
||||||
const args = message.content.slice(prefix.length).trim().split(/ +/g);
|
const args = message.content.slice(prefix.length).trim().split(/ +/g);
|
||||||
const command = args.shift().toLowerCase();
|
const command = args.shift().toLowerCase();
|
||||||
|
|
||||||
//Grab the command data from the client.commands (Discord collection)
|
|
||||||
const cmd = client.commands.get(command);
|
const cmd = client.commands.get(command);
|
||||||
|
|
||||||
//If that command doesn't exist, silently exit and do nothing
|
|
||||||
if (!cmd) return;
|
if (!cmd) return;
|
||||||
|
|
||||||
//Run the command
|
|
||||||
cmd.run(client, message, args);
|
cmd.run(client, message, args);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user