From 29a47c73bf63b2074f06f8860e05fd0c7f1809a4 Mon Sep 17 00:00:00 2001 From: Lonami Date: Thu, 12 Sep 2019 17:59:11 +0200 Subject: [PATCH] Fix replies in dab brain fp --- stdplugins/randomsticker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdplugins/randomsticker.py b/stdplugins/randomsticker.py index a32da48..2f09358 100644 --- a/stdplugins/randomsticker.py +++ b/stdplugins/randomsticker.py @@ -21,7 +21,7 @@ def choser(cmd, pack, blacklist={}): if x.id not in blacklist ] - await event.respond(file=random.choice(docs)) + await event.respond(file=random.choice(docs), reply_to=event.reply_to_msg_id) choser('brain', 'supermind')