Fixed bug that came from previous commit

This commit is contained in:
Christer Warén 2020-03-28 03:06:21 +02:00
parent eeb703da2a
commit c0885f929a

View File

@ -3,7 +3,11 @@ module.exports = {
async execute(client, msg, Discord) {
if (msg.author.bot || !msg.guild) return;
let prefix = client.config.prefix;
if(msg.mentions.members.first().user.id === client.user.id){ prefix = "<@!" + client.user.id + "> "; }
if(msg.mentions.members.first()){
if(msg.mentions.members.first().user.id === client.user.id){
prefix = "<@!" + client.user.id + "> ";
}
}
const args = msg.content.slice(prefix.length).split(' ');
if (!msg.content.startsWith(prefix)) return;
if (!args[0]) return;