From f97c18aed01ce243600874cb3defdb40a4bf42a0 Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 23 Feb 2020 00:15:53 +0100 Subject: [PATCH] Ignore flags when parsing system tags --- PluralKit.Bot/Commands/SystemEdit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index af986cc6..4f942314 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -50,7 +50,7 @@ namespace PluralKit.Bot { ctx.CheckSystem(); - var newTag = ctx.RemainderOrNull(); + var newTag = ctx.RemainderOrNull(skipFlags: false); ctx.System.Tag = newTag; if (newTag != null)