From 6b996435e3bbb7b4018e7a911a9c8b7578da9f5f Mon Sep 17 00:00:00 2001 From: sk89q Date: Sun, 30 Jan 2011 22:09:24 -0800 Subject: [PATCH] Fixed /forestgen having an incorrect number of maximum arguments. --- src/com/sk89q/worldedit/commands/GenerationCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/sk89q/worldedit/commands/GenerationCommands.java b/src/com/sk89q/worldedit/commands/GenerationCommands.java index 3026bcbf6..74d4a03ad 100644 --- a/src/com/sk89q/worldedit/commands/GenerationCommands.java +++ b/src/com/sk89q/worldedit/commands/GenerationCommands.java @@ -136,7 +136,7 @@ public class GenerationCommands { usage = "[size] [type] [density]", desc = "Generate a forest", min = 0, - max = 2 + max = 3 ) @CommandPermissions({"worldedit.generation.forest"}) public static void forestGen(CommandContext args, WorldEdit we,