Exemplo n.º 1
0
def setup(bot):
    n = Shitpost(bot)
    data_manager.load_bundled_data(n, __file__)
    bot.add_cog(n)
Exemplo n.º 2
0
async def setup(bot):
    tycoon = PlantTycoon(bot)
    data_manager.load_bundled_data(tycoon, __file__)
    await tycoon._load_plants_products()  # I can access protected members if I want, linter!!
    bot.add_cog(tycoon)
Exemplo n.º 3
0
def setup(bot):
    cog = Shop()
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)
Exemplo n.º 4
0
def setup(bot):
    n = Hangman(bot)
    data_manager.load_bundled_data(n, __file__)
    bot.add_cog(n)
    bot.add_listener(n.on_react, "on_reaction_add")
Exemplo n.º 5
0
def setup(bot):
    cog = Roast(bot)
    data_manager.load_bundled_data(cog, 'roasts.txt')
    bot.add_cog(cog)
Exemplo n.º 6
0
def setup(bot):
    n = Triggers(bot)
    data_manager.load_bundled_data(n, __file__)
    bot.add_cog(n)
Exemplo n.º 7
0
def setup(bot):
    plant = RecyclingPlant(bot)
    data_manager.load_bundled_data(plant, __file__)
    bot.add_cog(plant)
Exemplo n.º 8
0
def setup(bot):
    tycoon = PlantTycoon(bot)
    data_manager.load_bundled_data(tycoon, __file__)
    bot.add_cog(tycoon)
Exemplo n.º 9
0
def setup(bot):
    cog = Weeedbot(bot)
    rmtree(data_manager.cog_data_path(cog))
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)
Exemplo n.º 10
0
def setup(bot):
    data_manager.load_bundled_data(WebServer(bot), __file__)
    bot.add_cog(WebServer(bot))
Exemplo n.º 11
0
def setup(bot):
    cog = NotSoBot(bot)
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)
Exemplo n.º 12
0
async def setup(bot: commands.Bot):
    cog = TestCog(bot)
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)
Exemplo n.º 13
0
def setup(bot):
    cog = PFPMaker(bot)
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)
Exemplo n.º 14
0
async def setup(bot):
    cog = Scrims(bot)
    data_manager.load_bundled_data(cog, __file__)
    bot.add_cog(cog)