diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index a3bb0236..a67d2dc7 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -15,6 +15,7 @@
+
@@ -27,6 +28,7 @@
+
\ No newline at end of file
diff --git a/core/src/main/java/co/aikar/commands/CommandHelp.java b/core/src/main/java/co/aikar/commands/CommandHelp.java
index 9abc055b..d9ac6a05 100644
--- a/core/src/main/java/co/aikar/commands/CommandHelp.java
+++ b/core/src/main/java/co/aikar/commands/CommandHelp.java
@@ -130,11 +130,11 @@ public class CommandHelp {
*/
@NotNull
public String[] getFormatReplacements(HelpEntry e) {
- //{command} {parameters} {seperator} {description}
+ //{command} {parameters} {separator} {description}
return new String[] {
"{command}", e.getCommand(),
"{parameters}", e.getParameterSyntax(),
- "{seperator}", e.getDescription().isEmpty() ? "" : "-",
+ "{separator}", e.getDescription().isEmpty() ? "" : "-",
"{description}", e.getDescription()
};
}
diff --git a/docs/acf-core/co/aikar/commands/annotation/package-tree.html b/docs/acf-core/co/aikar/commands/annotation/package-tree.html
index e684884e..ff09441a 100644
--- a/docs/acf-core/co/aikar/commands/annotation/package-tree.html
+++ b/docs/acf-core/co/aikar/commands/annotation/package-tree.html
@@ -79,22 +79,22 @@
Annotation Type Hierarchy
diff --git a/docs/acf-core/co/aikar/commands/class-use/CommandIssuer.html b/docs/acf-core/co/aikar/commands/class-use/CommandIssuer.html
index 841254ba..65414c59 100644
--- a/docs/acf-core/co/aikar/commands/class-use/CommandIssuer.html
+++ b/docs/acf-core/co/aikar/commands/class-use/CommandIssuer.html
@@ -153,13 +153,13 @@
CommandManager.getCommandIssuer(Object issuer) |
-CommandIssuer |
-BaseCommand.getCurrentCommandIssuer() |
-
-
static CommandIssuer |
CommandManager.getCurrentCommandIssuer() |
+
+CommandIssuer |
+BaseCommand.getCurrentCommandIssuer() |
+
CommandIssuer |
CommandCompletionContext.getIssuer() |
@@ -221,13 +221,13 @@
void |
-BaseCommand.execute(CommandIssuer issuer,
+ForwardingCommand.execute(CommandIssuer issuer,
String commandLabel,
String[] args) |
|
void |
-ForwardingCommand.execute(CommandIssuer issuer,
+BaseCommand.execute(CommandIssuer issuer,
String commandLabel,
String[] args) |
|
@@ -275,11 +275,11 @@
boolean |
-BaseCommand.hasPermission(CommandIssuer issuer) |
+ForwardingCommand.hasPermission(CommandIssuer sender) |
boolean |
-ForwardingCommand.hasPermission(CommandIssuer sender) |
+BaseCommand.hasPermission(CommandIssuer issuer) |
boolean |
@@ -314,14 +314,14 @@
List<String> |
-BaseCommand.tabComplete(CommandIssuer issuer,
- String commandLabel,
+ForwardingCommand.tabComplete(CommandIssuer issuer,
+ String alias,
String[] args) |
|
List<String> |
-ForwardingCommand.tabComplete(CommandIssuer issuer,
- String alias,
+BaseCommand.tabComplete(CommandIssuer issuer,
+ String commandLabel,
String[] args) |
|
diff --git a/docs/acf-core/co/aikar/commands/class-use/CommandManager.html b/docs/acf-core/co/aikar/commands/class-use/CommandManager.html
index 2b3ab3ad..72818ad4 100644
--- a/docs/acf-core/co/aikar/commands/class-use/CommandManager.html
+++ b/docs/acf-core/co/aikar/commands/class-use/CommandManager.html
@@ -120,20 +120,20 @@
CommandOperationContext.getCommandManager() |
-CommandManager |
-BaseCommand.getCurrentCommandManager() |
-
-
static CommandManager |
CommandManager.getCurrentCommandManager() |
+
+CommandManager |
+BaseCommand.getCurrentCommandManager() |
+
CommandManager |
-CommandHelp.getManager() |
+CommandIssuer.getManager() |
CommandManager |
-CommandIssuer.getManager() |
+CommandHelp.getManager() |
diff --git a/docs/acf-core/overview-tree.html b/docs/acf-core/overview-tree.html
index 0ccdcff2..b0c06e99 100644
--- a/docs/acf-core/overview-tree.html
+++ b/docs/acf-core/overview-tree.html
@@ -144,22 +144,22 @@
Annotation Type Hierarchy
Enum Hierarchy
diff --git a/docs/acf-core/src-html/co/aikar/commands/CommandHelp.html b/docs/acf-core/src-html/co/aikar/commands/CommandHelp.html
index 84dc04fe..122643b8 100644
--- a/docs/acf-core/src-html/co/aikar/commands/CommandHelp.html
+++ b/docs/acf-core/src-html/co/aikar/commands/CommandHelp.html
@@ -138,11 +138,11 @@
130 */
131 @NotNull
132 public String[] getFormatReplacements(HelpEntry e) {
-133 //{command} {parameters} {seperator} {description}
+133 //{command} {parameters} {separator} {description}
134 return new String[] {
135 "{command}", e.getCommand(),
136 "{parameters}", e.getParameterSyntax(),
-137 "{seperator}", e.getDescription().isEmpty() ? "" : "-",
+137 "{separator}", e.getDescription().isEmpty() ? "" : "-",
138 "{description}", e.getDescription()
139 };
140 }
diff --git a/languages/core/acf-core_cs.properties b/languages/core/acf-core_cs.properties
index 4aca9bca..024b3483 100644
--- a/languages/core/acf-core_cs.properties
+++ b/languages/core/acf-core_cs.properties
@@ -33,4 +33,4 @@ acf-core.must_be_min_length = Chyba: Musi mit alespon {min} znaku.
acf-core.must_be_max_length = Chyba: Musi mit maximalne {max} znaku.
acf-core.not_allowed_on_console = Chyba: Tento prikaz nelze pouzivat v konzoli.
acf-core.could_not_find_player = Chyba: Nepodarilo se najit hrace s prezdivkou: {search}
-acf-core.help_format = {command} {parameters} {seperator} {description}
+acf-core.help_format = {command} {parameters} {separator} {description}
diff --git a/languages/core/acf-core_de.properties b/languages/core/acf-core_de.properties
index 2a56fa9f..e2141a78 100644
--- a/languages/core/acf-core_de.properties
+++ b/languages/core/acf-core_de.properties
@@ -33,4 +33,4 @@ acf-core.must_be_min_length = Fehler: Du musst mindestens {min} Buchstaben einge
acf-core.must_be_max_length = Fehler: Du kannst maximal {max} Buchstaben eingeben.
acf-core.not_allowed_on_console = Fehler: Die Konsole darf diesen Befehl nicht ausführen.
acf-core.could_not_find_player = Fehler: Es konnte kein Spieler mit dem Namen {search} gefunden werden.
-acf-core.help_format={command} {parameters} {seperator} {description}
+acf-core.help_format={command} {parameters} {separator} {description}
diff --git a/languages/core/acf-core_en.properties b/languages/core/acf-core_en.properties
index de42f61a..7fd2b2b0 100644
--- a/languages/core/acf-core_en.properties
+++ b/languages/core/acf-core_en.properties
@@ -33,5 +33,5 @@ acf-core.must_be_min_length = Error: Must be at least {min} characters long.
acf-core.must_be_max_length = Error: Must be less than {max} characters long.
acf-core.not_allowed_on_console = Error: Console may not execute this command.
acf-core.could_not_find_player = Error: Could not find a player by the name: {search}
-acf-core.help_format = {command} {parameters} {seperator} {description}
+acf-core.help_format = {command} {parameters} {separator} {description}
acf-core.no_command_matched_search = No command matched {search}.
diff --git a/languages/core/acf-core_es.properties b/languages/core/acf-core_es.properties
index a58fe80a..f8a192d6 100644
--- a/languages/core/acf-core_es.properties
+++ b/languages/core/acf-core_es.properties
@@ -33,4 +33,4 @@ acf-core.must_be_min_length = Error: Tendria que ser al menos {min} caracteres d
acf-core.must_be_max_length = Error: Deberia ser menos que {max} caracteres de largo.
acf-core.not_allowed_on_console = Error: La consola no tendria que ejecutar este comando.
acf-core.could_not_find_player = Error: No se pudo encontrar un jugador con el nombre: {search}
-acf-core.help_format={command} {parameters} {seperator} {description}
+acf-core.help_format={command} {parameters} {separator} {description}
diff --git a/languages/core/acf-core_pl.properties b/languages/core/acf-core_pl.properties
index 00e5a27d..0797e6f6 100644
--- a/languages/core/acf-core_pl.properties
+++ b/languages/core/acf-core_pl.properties
@@ -34,4 +34,4 @@ acf-core.must_be_min_length = Blad: Argument musi posiadac przynajmniej {min} zn
acf-core.must_be_max_length = Blad: Argument musi posiadac maksymalnie {max} znaki/znaków.
acf-core.not_allowed_on_console = Blad: Konsola nie moze wykonac tej komendy.
acf-core.could_not_find_player = Blad: Nie znaleziono gracza o nicku: {search}.
-acf-core.help_format = {command} {parameters} {seperator} {description}
+acf-core.help_format = {command} {parameters} {separator} {description}