
* Start of map maker, ambiguous file format (probably just jpg and png) * More map maker WIP * This isn't dad * Split mapmaker * Don't load current map if it doesn't exist * WIP mapmaker
16 lines
284 B
Python
16 lines
284 B
Python
from redbot.core import data_manager
|
|
|
|
from .conquest import Conquest
|
|
from .mapmaker import MapMaker
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Conquest(bot)
|
|
data_manager.bundled_data_path(cog)
|
|
await cog.load_data()
|
|
|
|
bot.add_cog(cog)
|
|
|
|
cog2 = MapMaker(bot)
|
|
bot.add_cog(cog2)
|