geforkt von Mirrors/FastAsyncWorldEdit
Nicer wiki perms table.
Dieser Commit ist enthalten in:
Ursprung
903abc80a4
Commit
9e6a2ccf4d
@ -137,8 +137,31 @@ public class DocumentationPrinter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stream.println();
|
stream.print(" || ");
|
||||||
|
|
||||||
|
boolean firstAlias = true;
|
||||||
|
if (cmd.aliases().length != 0) {
|
||||||
|
for (String alias : cmd.aliases()) {
|
||||||
|
if (!firstAlias) stream.print("<br />");
|
||||||
|
stream.print(prefix + alias);
|
||||||
|
firstAlias = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stream.print(" || ");
|
||||||
|
|
||||||
|
if (cmd.flags() != null && !cmd.flags().equals("")) {
|
||||||
|
stream.print(cmd.flags());
|
||||||
|
}
|
||||||
|
|
||||||
|
stream.print(" || ");
|
||||||
|
|
||||||
|
if (cmd.desc() != null && !cmd.desc().equals("")) {
|
||||||
|
stream.print(cmd.desc());
|
||||||
|
}
|
||||||
|
|
||||||
|
stream.println();
|
||||||
|
|
||||||
if (method.isAnnotationPresent(NestedCommand.class)) {
|
if (method.isAnnotationPresent(NestedCommand.class)) {
|
||||||
NestedCommand nested =
|
NestedCommand nested =
|
||||||
method.getAnnotation(NestedCommand.class);
|
method.getAnnotation(NestedCommand.class);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren