From ed09dbc48a50ea22d26fc5605f5042014f0948ce Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Mon, 17 Dec 2018 11:33:32 -0800 Subject: [PATCH] [V3 CardsAgainstHumanity] Bundled data fun --- cah/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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)