diff --git a/ClaimLink/ClaimLinkChatCommand.cs b/ClaimLink/ClaimLinkChatCommand.cs index 752a385..8c6dd26 100644 --- a/ClaimLink/ClaimLinkChatCommand.cs +++ b/ClaimLink/ClaimLinkChatCommand.cs @@ -48,7 +48,7 @@ public static class ClaimLinkChatCommand var p = api.ChatCommands.Parsers; var root = api.ChatCommands.Create("claimlink") - .WithAlias("clink") + .WithAlias("clink", "claiml", "cl") .WithDescription("Link vanilla land claims into shared, derived protective territory.") .RequiresPrivilege(Privilege.chat); @@ -85,7 +85,7 @@ public static class ClaimLinkChatCommand foreach (var spec in playerCommands) BuildSubCommand(root, spec); - var admin = root.BeginSubCommand("admin") + var admin = root.BeginSubCommands("admin", "a") .WithDescription("Admin management for any claim link (op or console).") .RequiresPrivilege(Privilege.controlserver);