You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Fox-V3/planttycoon/__init__.py

10 lines
200 B

from redbot.core import data_manager
from .planttycoon import PlantTycoon
def setup(bot):
tycoon = PlantTycoon(bot)
data_manager.load_bundled_data(tycoon, __file__)
bot.add_cog(tycoon)