From 0ffe0689d1463a51a37e8acebe0955c32843ba88 Mon Sep 17 00:00:00 2001 From: sk89q Date: Thu, 24 Feb 2011 17:21:11 -0800 Subject: [PATCH] Fixed //count being ///count. --- CHANGELOG.txt | 1 + plugin.yml | 2 +- src/com/sk89q/worldedit/commands/SelectionCommands.java | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) 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,