diff --git a/src/bot.ts b/src/bot.ts index 4b3ea58..e232669 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -53,10 +53,6 @@ bot.on('message', msg => { if (msg.author === bot.user) { return; } - - if (msg.author !== bot.user && msg.mentions.has(bot.user)) { - msg.channel.send('yes?'); //using a mention here can lead to looping - } } });