diff options
author | redcreeper14385 <mounderfod@gmail.com> | 2021-07-22 12:25:40 +0100 |
---|---|---|
committer | redcreeper14385 <mounderfod@gmail.com> | 2021-07-22 12:26:23 +0100 |
commit | aeb57f55d642ac0a02c9c0ad23988fcdbc897c1c (patch) | |
tree | 2bb1a0c082cba68714c8dabaf3a04e91e06d6805 /bot.py | |
parent | d8f48844f9616ac8e9a30159118d37ebf1830b7c (diff) | |
download | tiny-potato-bot-aeb57f55d642ac0a02c9c0ad23988fcdbc897c1c.tar.gz |
feat: add modrinth command
Diffstat (limited to 'bot.py')
-rw-r--r-- | bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.py b/bot.py index f07c4bb..a135609 100644 --- a/bot.py +++ b/bot.py @@ -17,7 +17,7 @@ async def on_command_error(ctx, error): await utils.parse_error(ctx, error) def load_extensions(bot): - extensions = ['cogs.fun', 'cogs.about'] + extensions = ['cogs.fun', 'cogs.about', 'cogs.modrinth'] if __name__ == '__main__': for i in extensions: bot.load_extension(i) |