mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
Fixed bug that came from previous commit
This commit is contained in:
parent
eeb703da2a
commit
c0885f929a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user