diff --git a/planttycoon/__init__.py b/planttycoon/__init__.py index c0f4575..7819b90 100644 --- a/planttycoon/__init__.py +++ b/planttycoon/__init__.py @@ -5,6 +5,6 @@ from .planttycoon import PlantTycoon async def setup(bot): tycoon = PlantTycoon(bot) - data_manager.load_bundled_data(tycoon, __file__) + data_manager.bundled_data_path(tycoon) await tycoon._load_plants_products() # I can access protected members if I want, linter!! bot.add_cog(tycoon)