mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
Using bot mention as prefix
This commit is contained in:
parent
bf0e0aaf03
commit
eeb703da2a
@ -3,6 +3,7 @@ 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 + "> "; }
|
||||
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