julius

Results 2 comments of julius

You can do this yourself, ```python @bot.listen() async def on_message_edit(before: discord.Message, after: discord.Message): if before.content == after.content: return return await bot.process_commands(after) ``` You can also limit this to the owner...

Maybe you can override commands.Context and edit the message with the new content if the message was edited, Not sure though.