From 10f82a6723b63973d6d2d3ed53aa6473a37d0f3e Mon Sep 17 00:00:00 2001 From: KHobbits Date: Thu, 29 Mar 2012 00:13:56 +0100 Subject: Fix using /setworth --- Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java b/Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java index 734d9244d..91a1dd657 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java @@ -17,7 +17,7 @@ public class Commandsetworth extends EssentialsCommand @Override public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - if (args.length < 2) + if (args.length < 1) { throw new NotEnoughArgumentsException(); } -- cgit v1.2.3