From caac1a2c3f0997d39d95c288b07685d77894a33a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 28 Dec 2023 10:09:50 -0500 Subject: [PATCH] misc(art): changed some names of config commands --- art/art.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}.")