From 6f0bbb2adef45ad5216f3098d4596ec34db04cb5 Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Wed, 19 Jul 2023 15:38:43 -0300 Subject: [PATCH] FIX: Without this declaration, '--dbg' fails if '--rq' is never invoked --- utils/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/commands.py b/utils/commands.py index 1bd71a8..67cf0ba 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -30,6 +30,7 @@ with open(QUOTE_STACK, mode='r') as f: quote_content = {} +last_quote = 0 @client.event async def on_message(message): content = str(message.content)