1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00

Change status to be optional

This commit is contained in:
Myned 2022-02-23 00:18:54 -06:00
parent 7a0d1e0e36
commit 65d87e357d
No known key found for this signature in database
GPG key ID: 33790F979F7A28B8

2
run.py
View file

@ -35,4 +35,4 @@ async def on_error(event):
miru.load(bot) miru.load(bot)
bot.load_extensions_from("tools", "commands") bot.load_extensions_from("tools", "commands")
bot.run(activity=hikari.Activity(name=c.config["activity"], type=c.ACTIVITY)) bot.run(activity=hikari.Activity(name=c.config["activity"], type=c.ACTIVITY) if c.config["activity"] else None)