Remove some BungeeCord/Velocity command aliases

This commit is contained in:
Luck 2021-03-23 13:45:34 +00:00
parent 2dc6902001
commit f0e1a8f092
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ public class BungeeCommandExecutor extends Command implements TabExecutor {
private static final String NAME = "luckpermsbungee";
/** The command aliases */
private static final String[] ALIASES = {"lpb", "bperm", "bperms", "bpermission", "bpermissions"};
private static final String[] ALIASES = {"lpb"};
/** The main command name + aliases, prefixed with '/' */
private static final String[] SLASH_ALIASES = Stream.concat(

View File

@ -39,7 +39,7 @@ import java.util.List;
public class VelocityCommandExecutor extends CommandManager implements RawCommand {
/* The command aliases */
private static final String PRIMARY_ALIAS = "luckpermsvelocity";
private static final String[] ALIASES = {"lpv", "vperm", "vperms", "vpermission", "vpermissions"};
private static final String[] ALIASES = {"lpv"};
/* The command aliases, prefixed with '/' */
private static final String SLASH_PRIMARY_ALIAS = "/luckpermsvelocity";