Package com.sk89q.worldedit.command.tool
Class RecursivePickaxe
java.lang.Object
com.sk89q.worldedit.command.tool.RecursivePickaxe
A pickaxe mode that recursively finds adjacent blocks within range of
an initial block and of the same type.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
actPrimary
(Platform server, LocalConfiguration config, Player player, LocalSession session, Location clicked, Direction face) Perform the primary action of this tool.boolean
Checks to see if the player can still be using this tool (considering permissions and such).Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.sk89q.worldedit.command.tool.BlockTool
actPrimary
-
Constructor Details
-
RecursivePickaxe
public RecursivePickaxe(double range)
-
-
Method Details
-
canUse
Description copied from interface:Tool
Checks to see if the player can still be using this tool (considering permissions and such). -
actPrimary
public boolean actPrimary(Platform server, LocalConfiguration config, Player player, LocalSession session, Location clicked, @Nullable Direction face) Description copied from interface:BlockTool
Perform the primary action of this tool.- Specified by:
actPrimary
in interfaceBlockTool
- Parameters:
server
- The platformconfig
- The config instanceplayer
- The playersession
- The local sessionclicked
- The location that was clickedface
- The face that was clicked- Returns:
- true to cancel the original event which triggered this action (if possible)
-