From a1c3b77f3b62d21283081b4f4a9a8ef5788a1564 Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 18 May 2023 09:49:21 +0100 Subject: [PATCH] Fixed the thingy again again again! --- cogs/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/events.py b/cogs/events.py index 0734df3..9f8c023 100644 --- a/cogs/events.py +++ b/cogs/events.py @@ -535,7 +535,7 @@ class Events(commands.Cog): else: for k, v in data.copy().items(): if inspect.iscoroutinefunction(data[k]) or inspect.iscoroutine(data[k]): - await v() + data[k] = await v() elif callable(v): data[k] = v() data.setdefault("delete_after", 30)