use of com.sk89q.worldedit.command.tool.SinglePickaxe in project FastAsyncWorldEdit by IntellectualSites.
the class SuperPickaxeCommands method single.
@Command(name = "single", desc = "Enable the single block super pickaxe mode")
@CommandPermissions("worldedit.superpickaxe")
public void single(Player player, LocalSession session) throws WorldEditException {
session.setSuperPickaxe(new SinglePickaxe());
session.enableSuperPickAxe();
player.print(Caption.of("worldedit.tool.superpickaxe.mode.single"));
}
Aggregations