mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
fix: don't skip flags before MatchClear/MatchRaw
This commit is contained in:
parent
ae5451d901
commit
023d2577e5
3 changed files with 8 additions and 8 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue