From d21eb7b477e580d119cec0ac5b5c52bff015227c Mon Sep 17 00:00:00 2001 From: Ske Date: Tue, 25 Aug 2020 22:25:20 +0200 Subject: [PATCH] Add 'nick' to group display name alias --- PluralKit.Bot/Commands/CommandTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/CommandTree.cs b/PluralKit.Bot/Commands/CommandTree.cs index f1c9b57a..fce76f08 100644 --- a/PluralKit.Bot/Commands/CommandTree.cs +++ b/PluralKit.Bot/Commands/CommandTree.cs @@ -356,7 +356,7 @@ namespace PluralKit.Bot // Commands with group argument if (ctx.Match("rename", "name", "changename", "setname")) await ctx.Execute(GroupRename, g => g.RenameGroup(ctx, target)); - else if (ctx.Match("dn", "displayname", "nickname")) + else if (ctx.Match("nick", "dn", "displayname", "nickname")) await ctx.Execute(GroupDisplayName, g => g.GroupDisplayName(ctx, target)); else if (ctx.Match("description", "info", "bio", "text", "desc")) await ctx.Execute(GroupDesc, g => g.GroupDescription(ctx, target));