[V3 CardsAgainstHumanity] Bundled data fun

This commit is contained in:
aikaterna
2018-12-17 11:33:32 -08:00
committed by GitHub
parent 148b36d630
commit ed09dbc48a

View File

@@ -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)