diff --git a/cogs/chal/chal.py b/cogs/chal/chal.py index c0cc309..d71786a 100644 --- a/cogs/chal/chal.py +++ b/cogs/chal/chal.py @@ -56,7 +56,7 @@ async def solve(self, ctx: SlashContext, flag: str) -> None: return post = typing.cast(interactions.GuildForumPost, ctx.channel) if (not any(tag.name == "unsolved" for tag in post.applied_tags)): - await ctx.send(":x: Challenge has already been marked as solved.") + await ctx.send(":x: Challenge does not have unsolved tag.") return tags = [tag for tag in post.applied_tags if "unsolved" not in tag.name]