From 9a2039bed046aa11d134010f4d047efc675f8bd6 Mon Sep 17 00:00:00 2001 From: sk89q Date: Wed, 23 Feb 2011 09:49:15 -0800 Subject: [PATCH] /b changed to /br. --- plugin.yml | 2 +- src/com/sk89q/worldedit/commands/ToolCommands.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.yml b/plugin.yml index 72db4b200..21627ac65 100644 --- a/plugin.yml +++ b/plugin.yml @@ -221,7 +221,7 @@ commands: brush: description: Brush tool usage: / - aliases: ['b'] + aliases: ['br'] info: description: Block information tool usage: / diff --git a/src/com/sk89q/worldedit/commands/ToolCommands.java b/src/com/sk89q/worldedit/commands/ToolCommands.java index 26b4f595c..8103cae6f 100644 --- a/src/com/sk89q/worldedit/commands/ToolCommands.java +++ b/src/com/sk89q/worldedit/commands/ToolCommands.java @@ -124,7 +124,7 @@ public class ToolCommands { } @Command( - aliases = {"brush", "b"}, + aliases = {"brush", "br"}, desc = "Brush tool" ) @NestedCommand({BrushCommands.class})