mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-09 15:27:54 +00:00
fix MatchRaw commands one more time :/
This commit is contained in:
parent
2973325e12
commit
b390c8ab62
3 changed files with 9 additions and 9 deletions
|
|
@ -111,7 +111,7 @@ namespace PluralKit.Bot
|
|||
await ctx.Reply($"```\n{target.DisplayName}\n```");
|
||||
return;
|
||||
}
|
||||
if (!ctx.HasNext())
|
||||
if (!ctx.HasNext(false))
|
||||
{
|
||||
if (target.DisplayName == null)
|
||||
await ctx.Reply(noDisplayNameSetMessage);
|
||||
|
|
@ -168,7 +168,7 @@ namespace PluralKit.Bot
|
|||
await ctx.Reply($"```\n{target.Description}\n```");
|
||||
return;
|
||||
}
|
||||
if (!ctx.HasNext())
|
||||
if (!ctx.HasNext(false))
|
||||
{
|
||||
if (target.Description == null)
|
||||
await ctx.Reply(noDescriptionSetMessage);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue