diff --git a/cah/__init__.py b/cah/__init__.py index 25a05f4..e0c6273 100644 --- a/cah/__init__.py +++ b/cah/__init__.py @@ -1,5 +1,8 @@ +from redbot.core import commands, data_manager from .cah import CardsAgainstHumanity -def setup(bot): - bot.add_cog(CardsAgainstHumanity(bot)) +def setup(bot: commands.Bot): + n = CardsAgainstHumanity(bot) + data_manager.load_bundled_data(n, __file__) + bot.add_cog(n)