geforkt von Mirrors/FastAsyncWorldEdit
Added //desel or //deselect as aliases for //sel
Dieser Commit ist enthalten in:
Ursprung
8cdfd65218
Commit
70207f1370
@ -23,6 +23,7 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.logging.Logger;
|
||||
import com.sk89q.minecraft.util.commands.Command;
|
||||
import com.sk89q.minecraft.util.commands.CommandAlias;
|
||||
import com.sk89q.minecraft.util.commands.CommandContext;
|
||||
import com.sk89q.minecraft.util.commands.CommandPermissions;
|
||||
import com.sk89q.worldedit.*;
|
||||
@ -603,6 +604,7 @@ public class SelectionCommands {
|
||||
if (args.argsLength() == 0) {
|
||||
session.getRegionSelector(world).clear();
|
||||
session.dispatchCUISelection(player);
|
||||
player.print("Selection cleared.");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -626,4 +628,10 @@ public class SelectionCommands {
|
||||
session.setRegionSelector(world, selector);
|
||||
session.dispatchCUISelection(player);
|
||||
}
|
||||
|
||||
@Command(aliases = {"/desel", "/deselect"}, desc = "Deselect the current selection")
|
||||
@CommandAlias("/sel")
|
||||
public void deselect() {
|
||||
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren