diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bb9a05796..9745d6d9f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,5 @@ 4.0-beta6: +- Fixed //count being ///count. - Added a workaround to the fact that Minecraft no longer sends a block dig packet for bedrock. WorldEdit now detects if you're hitting bedrock, but it may not be entirely accurate (torches will trick it!). diff --git a/plugin.yml b/plugin.yml index 3e5156845..450ff2786 100644 --- a/plugin.yml +++ b/plugin.yml @@ -160,7 +160,7 @@ commands: /distr: description: Get the distribution of blocks in the selection usage: / [-c] - //count: + /count: description: Counts the number of a certain type of block usage: / /size: diff --git a/src/com/sk89q/worldedit/commands/SelectionCommands.java b/src/com/sk89q/worldedit/commands/SelectionCommands.java index 22d2415e1..07df859eb 100644 --- a/src/com/sk89q/worldedit/commands/SelectionCommands.java +++ b/src/com/sk89q/worldedit/commands/SelectionCommands.java @@ -453,7 +453,7 @@ public class SelectionCommands { } @Command( - aliases = {"//count"}, + aliases = {"/count"}, usage = "", desc = "Counts the number of a certain type of block", min = 1,