Remove auto-reply 'yes?'

This commit is contained in:
Ralph 2020-11-16 15:12:50 -05:00 committed by GitHub
parent c2974d02ef
commit eb7012c432
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}
}
});