From 9656249655a16721294bb3cd5960c1310df223c2 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Wed, 4 Aug 2021 14:14:38 +0100 Subject: [PATCH] Hotfix to enable /tcard --- app/bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/bot.py b/app/bot.py index 929e1d6..3bc7fbe 100644 --- a/app/bot.py +++ b/app/bot.py @@ -278,6 +278,7 @@ if yaml_load(configFile): if any([x for x in yaml_load(lookupFile).values()]): loadCog(f'./{cogsDir}/slashcommands/secondary/game_management.py') loadCog(f'./{cogsDir}/slashcommands/secondary/player_commands.py') + loadCog(f'./{cogsDir}/slashcommands/secondary/tcard.py') loadCog(f'./{cogsDir}/slashcommands/secondary/pitch.py') if yaml_load(pitchesFile): loadCog(f'./{cogsDir}/events/secondary/pitch_listener.py')