From 599cceb2d1b55d5d7dd9ae3ab9f92f35dc6e98d4 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 16 Jul 2020 10:55:44 +0100 Subject: [PATCH] Adding new cogs --- settings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/settings.py b/settings.py index 855ea2df..f9f516c9 100644 --- a/settings.py +++ b/settings.py @@ -71,10 +71,12 @@ def extensions(): anime_ext = ['cogs.anime.interactive', 'cogs.anime.waifu_husbandos', 'cogs.anime.relationship'] help_ext = ['cogs.help.admin', 'cogs.help.help', 'cogs.help.self_roles', - 'cogs.help.info', 'cogs.help.verification', 'cogs.help.modmail'] + 'cogs.help.info', 'cogs.help.verification', 'cogs.help.oldmodmail'] fun_ext = ['cogs.fun.eightball', 'cogs.fun.enso', 'cogs.fun.fun', 'cogs.fun.owo_text', 'cogs.fun.reminder', 'cogs.fun.homies', 'cogs.fun.doggo'] - return (anime_ext, help_ext, fun_ext) + modmail_ext = ['cogs.modmail.setup', 'cogs.modmail.modmail'] + + return (anime_ext, help_ext, fun_ext, modmail_ext)