feat(forums): reworked how resolvedset tag works, no longer takes a forumchannel argument
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
This commit is contained in:
parent
5eceb484f3
commit
82d556a4e5
1 changed files with 5 additions and 7 deletions
|
@ -179,11 +179,9 @@ class Forums(commands.Cog):
|
|||
await ctx.send(f"{channel.mention} is not a forums channel!")
|
||||
|
||||
@resolvedset.command(name="tag")
|
||||
async def resolvedset_tag(self, ctx: commands.Context, channel: discord.abc.GuildChannel):
|
||||
async def resolvedset_tag(self, ctx: commands.context):
|
||||
"""Sets the tag used by the [p]resolved command."""
|
||||
if not isinstance(channel, discord.ForumChannel):
|
||||
await ctx.send(f"{channel.mention} is not a forums channel!")
|
||||
else:
|
||||
channel: discord.ForumChannel = ctx.guild.get_channel(await self.config.guild(ctx.guild).forum_channel())
|
||||
options = self.create_select_options(ctx, channel.available_tags)
|
||||
msg = await ctx.send("Select a forum tag below.")
|
||||
await msg.edit(view=SelectView(msg, options))
|
||||
|
|
Loading…
Reference in a new issue