No longer require true/false for the -m.

This commit is contained in:
graywolf336
2013-12-19 09:19:55 -06:00
parent 500c2abd51
commit 5f2fcd9027
3 changed files with 11 additions and 10 deletions

View File

@ -27,7 +27,8 @@ public class JailCommand implements Command {
try {
new JCommander(params, args);
}catch(ParameterException e) {
return false;
sender.sendMessage(e.getMessage());
return true;
}