From 5fff65c7d5bff7ecab1594bf6544f03badbfdac6 Mon Sep 17 00:00:00 2001 From: bobloy Date: Wed, 12 Aug 2020 10:59:52 -0400 Subject: [PATCH] WIP mapmaker --- conquest/mapmaker.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/conquest/mapmaker.py b/conquest/mapmaker.py index 5f302e5..0cde96a 100644 --- a/conquest/mapmaker.py +++ b/conquest/mapmaker.py @@ -38,9 +38,13 @@ class MapMaker(commands.Cog): """Load a map image to be modified. Upload one with this command or provide a path""" message: discord.Message = ctx.message if not message.attachments and not map_path: - await ctx.maybe_send_embed("Either upload an image with this command or provide a path to the image") + await ctx.maybe_send_embed( + "Either upload an image with this command or provide a path to the image" + ) return + await ctx.maybe_send_embed("WIP") @mapmaker.command(name="load") async def _mapmaker_load(self, ctx: commands.Context, map_name=""): """Load an existing map to be modified.""" + await ctx.maybe_send_embed("WIP")