Include some information for when there are no cells.

This commit is contained in:
graywolf336 2013-12-16 14:12:26 -06:00
parent 12b850c391
commit c7a08381f2

View File

@ -20,7 +20,7 @@ import com.graywolf336.jail.command.CommandInfo;
public class JailListCellsCommand implements Command {
@Override
public boolean execute(JailManager jm, CommandSender sender, String... args) {
sender.sendMessage(ChatColor.AQUA + "----------Jails----------");
sender.sendMessage(ChatColor.AQUA + "----------Cells----------");
if(!jm.getJails().isEmpty()) {
if(jm.getJail(args[0]) != null) {
@ -35,7 +35,11 @@ public class JailListCellsCommand implements Command {
}
}
if(message.isEmpty()) {
sender.sendMessage(ChatColor.RED + "There are no cells for the jail '" + args[0] + "'.");
}else {
sender.sendMessage(ChatColor.GREEN + message);
}
}else {
sender.sendMessage(ChatColor.RED + "No jail by the name of '" + args[0] + "'.");
}