From 7730ddf6797de6faf36f1f947db18c50df912e36 Mon Sep 17 00:00:00 2001 From: sk89q Date: Thu, 24 Feb 2011 16:43:23 -0800 Subject: [PATCH] Removed /t. --- plugin.yml | 1 - src/com/sk89q/worldedit/commands/ToolUtilCommands.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin.yml b/plugin.yml index 21627ac65..3e5156845 100644 --- a/plugin.yml +++ b/plugin.yml @@ -198,7 +198,6 @@ commands: tool: description: Select a tool to bind usage: / - aliases: ['t'] mat: description: Set the brush material usage: / [pattern] diff --git a/src/com/sk89q/worldedit/commands/ToolUtilCommands.java b/src/com/sk89q/worldedit/commands/ToolUtilCommands.java index b070ba7a6..aa1e71610 100644 --- a/src/com/sk89q/worldedit/commands/ToolUtilCommands.java +++ b/src/com/sk89q/worldedit/commands/ToolUtilCommands.java @@ -63,7 +63,7 @@ public class ToolUtilCommands { } @Command( - aliases = {"tool", "t"}, + aliases = {"tool"}, desc = "Select a tool to bind" ) @NestedCommand({ToolCommands.class})