diff --git a/EnsoBot.py b/EnsoBot.py index 9f135371..86188944 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -18,9 +18,12 @@ client = commands.Bot( # Create a new bot description='Ensō~Chan!', # Set a description for the bot owner_id=154840866496839680) # Your unique User ID +(anime, helps, fun) = settings.extensions() +complete_list = anime + helps + fun + # Calls the cogs from the settings.py file and loads them if __name__ == '__main__': - for ext in settings.extensions: + for ext in complete_list: client.load_extension(ext)