Skip to content

Commit

Permalink
add meta note, fix blockcrack command classname
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jan 27, 2019
1 parent d9276a1 commit 47c75e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -317,6 +317,9 @@ public void registerCoreMembers() {
// can also utilize a format script with the 'format' argument. See the format script-container
// for more information.
//
// Note that the default announce mode (that shows for all players) relies on the Bukkit broadcast
// system, which requires the permission "bukkit.broadcast.user" to see broadcasts.
//
// @Tags
// None
//
Expand Down Expand Up @@ -517,7 +520,7 @@ public void registerCoreMembers() {
// - repeat 10:
// - blockcrack l@12,43,20,world progress:<def[value]> stack
// -->
registerCoreMember(BlockCrack.class,
registerCoreMember(BlockCrackCommand.class,
"BLOCKCRACK", "blockcrack [<location>] [progress:<#>] (stack) (players:<player>|...)", 2);


Expand Down
Expand Up @@ -22,7 +22,7 @@
import java.util.Map;
import java.util.UUID;

public class BlockCrack extends AbstractCommand {
public class BlockCrackCommand extends AbstractCommand {

@Override
public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException {
Expand Down

0 comments on commit 47c75e4

Please sign in to comment.