mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 17:50:13 +00:00
fix: missing returns for pk;s tag command
This commit is contained in:
parent
b71e97a5e9
commit
95e0fcc36d
1 changed files with 2 additions and 0 deletions
|
|
@ -172,6 +172,7 @@ namespace PluralKit.Bot
|
||||||
await ctx.Reply(noTagSetMessage);
|
await ctx.Reply(noTagSetMessage);
|
||||||
else
|
else
|
||||||
await ctx.Reply($"Your current system tag is {ctx.System.Tag.AsCode()}. To change it, type `pk;s tag <tag>`. To clear it, type `pk;s tag -clear`.");
|
await ctx.Reply($"Your current system tag is {ctx.System.Tag.AsCode()}. To change it, type `pk;s tag <tag>`. To clear it, type `pk;s tag -clear`.");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (ctx.MatchRaw())
|
if (ctx.MatchRaw())
|
||||||
{
|
{
|
||||||
|
|
@ -179,6 +180,7 @@ namespace PluralKit.Bot
|
||||||
await ctx.Reply(noTagSetMessage);
|
await ctx.Reply(noTagSetMessage);
|
||||||
else
|
else
|
||||||
await ctx.Reply($"```\n{ctx.System.Tag}\n```");
|
await ctx.Reply($"```\n{ctx.System.Tag}\n```");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (await ctx.MatchClear("your system's tag"))
|
if (await ctx.MatchClear("your system's tag"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue