fix: don't skip flags before MatchClear/MatchRaw

This commit is contained in:
spiral
2021-09-06 19:09:43 -04:00
parent ae5451d901
commit 023d2577e5
3 changed files with 8 additions and 8 deletions

View File

@@ -33,7 +33,7 @@ namespace PluralKit.Bot
ctx.CheckSystem();
if (!ctx.HasNext())
if (!ctx.HasNext(false))
{
if (ctx.System.Name != null)
await ctx.Reply($"Your system's name is currently **{ctx.System.Name}**. Type `pk;system name -clear` to clear it.");
@@ -77,7 +77,7 @@ namespace PluralKit.Bot
ctx.CheckSystem();
if (!ctx.HasNext())
if (!ctx.HasNext(false))
{
if (ctx.System.Description == null)
await ctx.Reply(noDescriptionSetMessage);