diff --git a/stdplugins/aesthetics.py b/stdplugins/aesthetics.py index bf18a26..462fc32 100644 --- a/stdplugins/aesthetics.py +++ b/stdplugins/aesthetics.py @@ -18,6 +18,7 @@ def aesthetify(string): @borg.on(events.NewMessage(pattern=r'.ae\s+(.+)', outgoing=True)) +@borg.on(events.MessageEdited(pattern=r'.ae\s+(.+)', outgoing=True)) async def _(event): text = event.pattern_match.group(1) text = "".join(aesthetify(text))