mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-28 21:56:33 +01:00
#537 Remove anvil alias
This commit is contained in:
parent
b9c056c879
commit
b87008149e
@ -54,7 +54,7 @@ import java.util.concurrent.TimeUnit;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkNotNull;
|
||||
|
||||
@Command(aliases = {"anvil", "/anvil"}, desc = "Manipulate billions of blocks: [More Info](https://github.com/boy0001/FastAsyncWorldedit/wiki/Anvil-API)")
|
||||
@Command(aliases = {"/anvil"}, desc = "Manipulate billions of blocks: [More Info](https://github.com/boy0001/FastAsyncWorldedit/wiki/Anvil-API)")
|
||||
public class AnvilCommands {
|
||||
|
||||
private final WorldEdit worldEdit;
|
||||
|
@ -764,6 +764,7 @@ public class UtilityCommands extends MethodCommands {
|
||||
} else {
|
||||
group = "Unsorted";
|
||||
}
|
||||
group = group.replace("/", "");
|
||||
group = StringMan.toProperCase(group);
|
||||
Set<CommandMapping> queue = grouped.get(group);
|
||||
if (queue == null) {
|
||||
|
@ -219,7 +219,7 @@ public final class CommandManager {
|
||||
methodMap.clear();
|
||||
|
||||
dispatcher = graph
|
||||
.group("anvil", "/anvil")
|
||||
.group("/anvil")
|
||||
.describeAs("Anvil command")
|
||||
.registerMethods(new AnvilCommands(worldEdit)).parent()
|
||||
.registerMethods(new BiomeCommands(worldEdit))
|
||||
|
Loading…
Reference in New Issue
Block a user