
* Initial files * Functioning image coloring * Add more commands, untested * Add map list, move set to under conquest, and WIP saving map * ALl masks, mostly working commands * Unneeded original.jpg * Rename to simple, WIP numbered * Use numbers as mask, probably need to switch to png soon * Save to config, test zoom levels * Handle zoom properly, save it to json for each map as well * Move maps to WIP folder * WIP folder not in data folder * Info and READMe updates
12 lines
205 B
Python
12 lines
205 B
Python
from redbot.core import data_manager
|
|
|
|
from .conquest import Conquest
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Conquest(bot)
|
|
data_manager.bundled_data_path(cog)
|
|
await cog.load_data()
|
|
|
|
bot.add_cog(cog)
|