geforkt von Mirrors/FastAsyncWorldEdit
Cleaned up CommandAlias a bit
Dieser Commit ist enthalten in:
Ursprung
d64fd95173
Commit
93fbad4d82
@ -1,6 +1,6 @@
|
||||
// $Id$
|
||||
/*
|
||||
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
|
||||
* Copyright (C) 2011 sk89q <http://www.sk89q.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -30,11 +30,11 @@ import java.lang.annotation.RetentionPolicy;
|
||||
*/
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface AliasCommand {
|
||||
public @interface CommandAlias {
|
||||
|
||||
/**
|
||||
*
|
||||
* @return Raw {@link CommandsManager}-formatted command arg array to run
|
||||
*/
|
||||
String[] aliasTo();
|
||||
String[] value();
|
||||
}
|
@ -369,9 +369,9 @@ public abstract class CommandsManager<T> {
|
||||
} else {
|
||||
executeMethod(method, args, player, methodArgs, level + 1);
|
||||
}
|
||||
} else if (method.isAnnotationPresent(AliasCommand.class)) {
|
||||
AliasCommand aCmd = method.getAnnotation(AliasCommand.class);
|
||||
executeMethod(parent, aCmd.aliasTo(), player, methodArgs, level);
|
||||
} else if (method.isAnnotationPresent(CommandAlias.class)) {
|
||||
CommandAlias aCmd = method.getAnnotation(CommandAlias.class);
|
||||
executeMethod(parent, aCmd.value(), player, methodArgs, level);
|
||||
} else {
|
||||
Command cmd = method.getAnnotation(Command.class);
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren