diff --git a/art/art.py b/art/art.py index 88babcd..051d214 100644 --- a/art/art.py +++ b/art/art.py @@ -49,13 +49,13 @@ class Art(commands.Cog): """Art submission settings.""" @artset.command() - async def channel(self, ctx: commands.Context, channel: discord.TextChannel): + async def submission(self, ctx: commands.Context, channel: discord.TextChannel): """Set the art submission channel.""" await self.config.guild(ctx.guild).art_submission_channel.set(channel.id) await ctx.send(f"Art submission channel set to {channel.mention}.") @artset.command() - async def artchannel(self, ctx: commands.Context, channel: discord.TextChannel): + async def result(self, ctx: commands.Context, channel: discord.TextChannel): """Set the art channel.""" await self.config.guild(ctx.guild).art_channel.set(channel.id) await ctx.send(f"Art channel set to {channel.mention}.")