Isnubi / FeurBot

Discord bot developed in Python
MIT License
1 stars 0 forks source link

Answering to the bot #1

Closed Isnubi closed 2 years ago

Isnubi commented 2 years ago

When we reply to a bot message, it deletes the message and sends the embedded prefix message.

Isnubi commented 2 years ago

I have to fix the Cog "Prefix management" in order to check if a bot mention is present in the message content instead of checking all the bot mentions (including on replies)

Isnubi commented 2 years ago

Bug have been fixed. Replacing line 61 in cogs/PrefixManagement.py : if self.bot.user.mentioned_in(message): by : if message.guild.me.mention in message.content: