From eb7012c432f8300a5d033e7370f5322c5c66bbb7 Mon Sep 17 00:00:00 2001 From: Ralph Date: Mon, 16 Nov 2020 15:12:50 -0500 Subject: [PATCH] Remove auto-reply 'yes?' --- src/bot.ts | 4 ---- 1 file changed, 4 deletions(-) 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 - } } });