mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
feat: add more systemtag-related command aliases
- `pk;s t` for tag - `pk;s st` for servertag (taken from a Notion suggestion)
This commit is contained in:
parent
ee17fcb11f
commit
b8fda734e2
1 changed files with 2 additions and 2 deletions
|
|
@ -209,9 +209,9 @@ public partial class CommandTree
|
|||
{
|
||||
if (ctx.Match("name", "rename", "changename"))
|
||||
await ctx.CheckSystem(target).Execute<SystemEdit>(SystemRename, m => m.Name(ctx, target));
|
||||
else if (ctx.Match("tag"))
|
||||
else if (ctx.Match("tag", "t"))
|
||||
await ctx.CheckSystem(target).Execute<SystemEdit>(SystemTag, m => m.Tag(ctx, target));
|
||||
else if (ctx.Match("servertag"))
|
||||
else if (ctx.Match("servertag", "st"))
|
||||
await ctx.CheckSystem(target).Execute<SystemEdit>(SystemServerTag, m => m.ServerTag(ctx, target));
|
||||
else if (ctx.Match("description", "desc", "bio"))
|
||||
await ctx.CheckSystem(target).Execute<SystemEdit>(SystemDesc, m => m.Description(ctx, target));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue