mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
fix(bot): allow "split id" for config option
This commit is contained in:
parent
dc3e21a195
commit
a3f1601938
1 changed files with 1 additions and 1 deletions
|
|
@ -538,7 +538,7 @@ public partial class CommandTree
|
||||||
return ctx.Execute<Config>(null, m => m.CaseSensitiveProxyTags(ctx));
|
return ctx.Execute<Config>(null, m => m.CaseSensitiveProxyTags(ctx));
|
||||||
if (ctx.MatchMultiple(new[] { "proxy" }, new[] { "error" }) || ctx.Match("pe"))
|
if (ctx.MatchMultiple(new[] { "proxy" }, new[] { "error" }) || ctx.Match("pe"))
|
||||||
return ctx.Execute<Config>(null, m => m.ProxyErrorMessageEnabled(ctx));
|
return ctx.Execute<Config>(null, m => m.ProxyErrorMessageEnabled(ctx));
|
||||||
if (ctx.MatchMultiple(new[] { "split" }, new[] { "ids" }) || ctx.Match("sid"))
|
if (ctx.MatchMultiple(new[] { "split" }, new[] { "id", "ids" }) || ctx.Match("sid"))
|
||||||
return ctx.Execute<Config>(null, m => m.HidDisplaySplit(ctx));
|
return ctx.Execute<Config>(null, m => m.HidDisplaySplit(ctx));
|
||||||
|
|
||||||
// todo: maybe add the list of configuration keys here?
|
// todo: maybe add the list of configuration keys here?
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue