Returning a tuple of cogs

pull/4/head
sgoudham 4 years ago
parent 4a34852951
commit 6b6b10d636

@ -45,7 +45,13 @@ channels = ["enso-chan-commands", "picto-chat", 663651584399507481]
# Grabbing the list of colours # Grabbing the list of colours
colour_list = [c for c in colors.values()] colour_list = [c for c in colors.values()]
# Instantiates a list for all the cogs
extensions = ['cogs.AnimeImages', 'cogs.FunCommands', 'cogs.GetInfo', def extensions():
'cogs.HelpCommands', 'cogs.OwOText', 'cogs.Embeds', # Instantiates a list for all the cogs
'cogs.Reminder', 'cogs.HelpMenu'] anime_ext = ['cogs.anime.interactive', 'cogs.anime.waifu_husbandos']
help_ext = ['cogs.help.admin', 'cogs.help.help', 'cogs.help.self_roles', 'cogs.help.info']
fun_ext = ['cogs.fun.8ball', 'cogs.fun.enso', 'cogs.fun.fun', 'cogs.fun.owo_text', 'cogs.fun.reminder']
return (anime_ext, help_ext, fun_ext)

Loading…
Cancel
Save