People on MCCM have requested that the bot react with :wastebasket: on the eval messages, for "easy deletion of the messages".
This is a simple change, only requiring to catch the output of ctx.send (Which returns a message object) and call message.add_reaction on it, adding the reaction. This should not trigger the deletion, as the user of the on_reaction_add will be the bot, instead of the reference author.
People on MCCM have requested that the bot react with :wastebasket: on the eval messages, for "easy deletion of the messages". This is a simple change, only requiring to catch the output of
ctx.send
(Which returns a message object) and callmessage.add_reaction
on it, adding the reaction. This should not trigger the deletion, as theuser
of theon_reaction_add
will be the bot, instead of the reference author.