Quick fix, but let's parse the jail command if no args.

This commit is contained in:
graywolf336 2014-01-28 16:23:20 -06:00
parent 9f4ebd5993
commit 2acfbf098e

View File

@ -30,6 +30,9 @@ public class JailHandler {
}
public void handleCommand(JailManager jm, CommandSender sender, String... args) {
if(args.length == 0) {
parseCommand(jm, sender, getMatches("jail").get(0), args);
}else {
JailFoundation foundation = new JailFoundation();
JCommander jc = new JCommander(foundation);
@ -54,6 +57,7 @@ public class JailHandler {
parseCommand(jm, sender, getMatches("jail").get(0), args);
}
}
}
/**
* Handles the given command and checks that the command is in valid form.