From 7481105860419900b672d3afd870c7c8f9114bbf Mon Sep 17 00:00:00 2001 From: Giulio Romano Date: Fri, 24 May 2024 16:33:37 +0200 Subject: [PATCH] ?run.py [ fixed install to Client based on version of Hikari Miru 4.0.0 ] Based on: Jan 18 @hypergonial hypergonial v4.0.0 87cfae8 v4.0.0 - REST Bot support --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 9ced63d..1dad379 100644 --- a/run.py +++ b/run.py @@ -34,7 +34,7 @@ async def on_error(event): raise event.exception -miru.install(bot) +miru.Client(bot) tasks.load(bot) bot.load_extensions_from("commands", "tasks") bot.run(activity=hikari.Activity(name=c.config["activity"], type=c.ACTIVITY) if c.config["activity"] else None)