WoW iM sTuPiD

This commit is contained in:
Alex 2020-07-08 12:42:59 -05:00
parent a8abbd0174
commit 601dc1755a
1 changed files with 2 additions and 3 deletions

View File

@ -144,14 +144,13 @@ client.on("message", async message => {
// To get the "message" itself we join the `args` back into a string with spaces:
const sayMessage = args.join(" ");
if (message.member.roles.cache.some(r=>["Admin","Mods","Member of the Order","Botmeister","Ally of the Order","say"].includes(r.name)) ){
if(message.content.includes("@"));{
if(message.content.includes("@")){
return message.reply("haha no")
}
// Then we delete the command message (sneaky, right?). The catch just ignores the error with a cute smiley thing.
// eslint-disable-next-line no-unused-vars, no-unreachable
// eslint-disable-next-line no-unused-vars
message.delete().catch(O_o=>{});
// And we get the bot to say the thing:
// eslint-disable-next-line no-unreachable
return message.channel.send(sayMessage);
}
}