From 808659246e590adaf33755dbf091d73aee7c545a Mon Sep 17 00:00:00 2001 From: Emily J Date: Thu, 30 Jul 2020 19:04:54 +1000 Subject: [PATCH] say command can no longer mention roles --- src/commands/say.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/say.js b/src/commands/say.js index a6c3cca..917e1fc 100644 --- a/src/commands/say.js +++ b/src/commands/say.js @@ -4,7 +4,7 @@ exports.run = (client, message, args, level) => { `<:error:466995152976871434> No message provided. Usage: \`${client.commands.get(`echo`).help.usage}\`` ); }; - if (message.content.includes("@everyone") || message.content.includes("@here")) { + if (message.content.includes("@everyone") || message.content.includes("@here") || message.content.includes("<@&")) { return message.channel.send('>:('); };