remove message content printing

This commit is contained in:
FLGX 2020-03-19 11:20:45 +01:00
parent ea52ce2fcf
commit 0360a5c581
No known key found for this signature in database
GPG Key ID: 999D16475015DDE3
1 changed files with 2 additions and 4 deletions

View File

@ -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);