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

@ -135,8 +135,6 @@ module.exports = async (client, message) => {
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) + ' ';