Fixed /forestgen having an incorrect number of maximum arguments.

This commit is contained in:
sk89q 2011-01-30 22:09:24 -08:00
parent c2cd87ed50
commit 6b996435e3

View File

@ -136,7 +136,7 @@ public class GenerationCommands {
usage = "[size] [type] [density]", usage = "[size] [type] [density]",
desc = "Generate a forest", desc = "Generate a forest",
min = 0, min = 0,
max = 2 max = 3
) )
@CommandPermissions({"worldedit.generation.forest"}) @CommandPermissions({"worldedit.generation.forest"})
public static void forestGen(CommandContext args, WorldEdit we, public static void forestGen(CommandContext args, WorldEdit we,