mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Add "n" as an alias to "new" for creating a system
This commit is contained in:
parent
3c5aec1df8
commit
2f8f819e22
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@ namespace PluralKit.Bot
|
|||
await ctx.Execute<System>(SystemInfo, m => m.Query(ctx, ctx.System));
|
||||
|
||||
// First, we match own-system-only commands (ie. no target system parameter)
|
||||
else if (ctx.Match("new", "create", "make", "add", "register", "init"))
|
||||
else if (ctx.Match("new", "create", "make", "add", "register", "init", "n"))
|
||||
await ctx.Execute<System>(SystemNew, m => m.New(ctx));
|
||||
else if (ctx.Match("name", "rename", "changename"))
|
||||
await ctx.Execute<SystemEdit>(SystemRename, m => m.Name(ctx));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue