From 67ed03067a802c1919a42e91960a721b5462ea07 Mon Sep 17 00:00:00 2001 From: spiral Date: Thu, 23 Dec 2021 23:17:25 -0500 Subject: [PATCH] fix: missing return in pk;system colour --- PluralKit.Bot/Commands/SystemEdit.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 4a2f298a..1637d013 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -144,6 +144,7 @@ public class SystemEdit .Description( $"This system's color is **#{target.Color}**." + (isOwnSystem ? " To clear it, type `pk;s color -clear`." : "")) .Build()); + return; } ctx.CheckSystem().CheckOwnSystem(target);