misc(art): changed some names of config commands
This commit is contained in:
parent
1611bfa180
commit
caac1a2c3f
1 changed files with 2 additions and 2 deletions
|
@ -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}.")
|
||||
|
|
Loading…
Reference in a new issue