From 4d4643a893f7f61982d79c4425dc91d64dd7183f Mon Sep 17 00:00:00 2001 From: Ralph Date: Mon, 3 Jan 2022 10:48:23 -0500 Subject: [PATCH] Update bot.js --- bot/bot.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bot/bot.js b/bot/bot.js index bcdbfd3..d6a62a3 100644 --- a/bot/bot.js +++ b/bot/bot.js @@ -163,8 +163,9 @@ function checkMessageForCommand(msg, isEdit) { return; } if (msg.author !== bot.user && msg.mentions.has(bot.user.id)) { - if (!msg.content.includes("@here") || !msg.content.includes("@everyone") - msg.channel.send('yes?'); //using a mention here can lead to looping + if (!msg.content.includes("@here") || !msg.content.includes("@everyone") { + msg.channel.send('yes?'); //using a mention here can lead to looping + } } else { } }