summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-06-13 00:49:36 +0100
committerKHobbits <rob@khobbits.co.uk>2012-06-13 00:49:36 +0100
commit20c1ab7888817a7b9f706f3da53782ac061fef09 (patch)
treef659c2996cd2d7b67b2f5a6e7ddd5d9069e377f1
parent5092fa80716c0e14d391052c88c6ff2ae0c3b287 (diff)
downloadEssentials-20c1ab7888817a7b9f706f3da53782ac061fef09.tar
Essentials-20c1ab7888817a7b9f706f3da53782ac061fef09.tar.gz
Essentials-20c1ab7888817a7b9f706f3da53782ac061fef09.tar.lz
Essentials-20c1ab7888817a7b9f706f3da53782ac061fef09.tar.xz
Essentials-20c1ab7888817a7b9f706f3da53782ac061fef09.zip
3 char min length on /pay and /msg
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandmsg.java4
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandpay.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java
index 2e1011e3b..2b7be976e 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java
@@ -21,11 +21,11 @@ public class Commandmsg extends EssentialsCommand
@Override
public void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
{
- if (args.length < 2 || args[0].trim().isEmpty() || args[1].trim().isEmpty())
+ if (args.length < 2 || args[0].trim().length() < 3 || args[1].trim().isEmpty())
{
throw new NotEnoughArgumentsException();
}
-
+
String message = getFinalArg(args, 1);
if (sender instanceof Player)
{
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandpay.java b/Essentials/src/com/earth2me/essentials/commands/Commandpay.java
index ed9a6bc29..08d024636 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandpay.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandpay.java
@@ -22,7 +22,7 @@ public class Commandpay extends EssentialsCommand
throw new NotEnoughArgumentsException();
}
- if (args[0] == "")
+ if (args[0].trim().length() < 3)
{
throw new NotEnoughArgumentsException("You need to specify a player to pay.");
}