The current check for if the bot user is mentioned in a message is faulty. Check for Client.user.id instead of username = botname, otherwise anyone named Mr.Prog could be mentioned and set off the custom reaction.
Get rid of the botuser in the bot.json
Change if-statement on line 1000 to users.has(CLIENT.user.id) instead of users.exists('username', SECRET.botuser)
The current check for if the bot user is mentioned in a message is faulty. Check for Client.user.id instead of username = botname, otherwise anyone named Mr.Prog could be mentioned and set off the custom reaction.
Get rid of the botuser in the bot.json Change if-statement on line 1000 to
users.has(CLIENT.user.id)
instead ofusers.exists('username', SECRET.botuser)