From 95e0fcc36df93b1b62224d4939eb581281dec034 Mon Sep 17 00:00:00 2001 From: spiral Date: Mon, 6 Sep 2021 20:07:46 -0400 Subject: [PATCH] fix: missing returns for `pk;s tag` command --- PluralKit.Bot/Commands/SystemEdit.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 2a9e1316..af00fa97 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -172,6 +172,7 @@ namespace PluralKit.Bot await ctx.Reply(noTagSetMessage); else await ctx.Reply($"Your current system tag is {ctx.System.Tag.AsCode()}. To change it, type `pk;s tag `. To clear it, type `pk;s tag -clear`."); + return; } if (ctx.MatchRaw()) { @@ -179,6 +180,7 @@ namespace PluralKit.Bot await ctx.Reply(noTagSetMessage); else await ctx.Reply($"```\n{ctx.System.Tag}\n```"); + return; } if (await ctx.MatchClear("your system's tag"))