From e5959383c53b48c517cb1bfbeda45ec928315038 Mon Sep 17 00:00:00 2001 From: sk89q Date: Thu, 10 Jul 2014 01:34:05 -0700 Subject: [PATCH] Fix /schematic load and save not taking 2 arguments. --- .../com/sk89q/worldedit/command/SchematicCommands.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java b/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java index ae1243ccf..67e8ba20f 100644 --- a/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java +++ b/src/main/java/com/sk89q/worldedit/command/SchematicCommands.java @@ -79,9 +79,7 @@ public class SchematicCommands { @Command( aliases = { "load" }, usage = "[] ", - desc = "Load a schematic into your clipboard", - min = 0, - max = 1 + desc = "Load a schematic into your clipboard" ) @Deprecated @CommandPermissions({ "worldedit.clipboard.load", "worldedit.schematic.load" }) @@ -135,9 +133,7 @@ public class SchematicCommands { @Command( aliases = { "save" }, usage = "[] ", - desc = "Save a schematic into your clipboard", - min = 0, - max = 1 + desc = "Save a schematic into your clipboard" ) @Deprecated @CommandPermissions({ "worldedit.clipboard.save", "worldedit.schematic.save" })