forked from embee/woomy
remove message content printing
This commit is contained in:
parent
ea52ce2fcf
commit
0360a5c581
1 changed files with 2 additions and 4 deletions
|
@ -134,9 +134,7 @@ module.exports = async (client, message) => {
|
|||
//const prefixMention = new RegExp(`^<@!?${client.user.id}>( |)$`);
|
||||
const myMention = `<@&${client.user.id}>`;
|
||||
const myMention2 = `<@!${client.user.id}>`;
|
||||
|
||||
console.log(message.content);
|
||||
|
||||
|
||||
if (message.content.startsWith(myMention) || message.content.startsWith(myMention2)) {
|
||||
if(message.content.length > myMention.length + 1 && (message.content.substr(0, myMention.length + 1) == myMention + ' ' || message.content.substr(0, myMention2.length + 1) == myMention2 + ' ')) {
|
||||
prefix = message.content.substr(0, myMention.length) + ' ';
|
||||
|
@ -144,7 +142,7 @@ module.exports = async (client, message) => {
|
|||
return message.channel.send(`Current prefix: \`${prefix}\``);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
if (message.content.indexOf(prefix) !== 0) return;
|
||||
|
||||
const args = message.content.slice(prefix.length).trim().split(/ +/g);
|
||||
|
|
Loading…
Reference in a new issue