
* Update ccrole.py * listener * Update audiotrivia.py * Update audiotrivia.py * Update audiotrivia.py * Update chat.py * Update dad.py * Update exclusiverole.py * Update leaver.py * Update reactrestrict.py * Update stealemoji.py * Update lseen.py * Update __init__.py * Update qrinvite.py * Update qrinvite.py * Depreaction * Depreaction warning * Listener * Update chat.py
11 lines
291 B
Python
11 lines
291 B
Python
from redbot.core import data_manager
|
|
|
|
from .planttycoon import PlantTycoon
|
|
|
|
|
|
async def setup(bot):
|
|
tycoon = PlantTycoon(bot)
|
|
data_manager.bundled_data_path(tycoon)
|
|
await tycoon._load_plants_products() # I can access protected members if I want, linter!!
|
|
bot.add_cog(tycoon)
|