Remove extra space and add mins after the minutes

This commit is contained in:
graywolf336 2014-02-10 15:10:22 -06:00
parent d8611a51bc
commit b9f01dd599

View File

@ -50,7 +50,7 @@ public class JailListCommand implements Command {
for(Prisoner p : j.getAllPrisoners()) {
//graywolf663: Being gray's evil twin; CONSOLE (10)
//prisoner: reason; jailer (time in minutes)
sender.sendMessage(ChatColor.BLUE + " " + p.getName() + ": " + p.getReason() + "; " + p.getJailer() + " (" + p.getRemainingTimeInMinutes() + ")");
sender.sendMessage(ChatColor.BLUE + " " + p.getName() + ": " + p.getReason() + "; " + p.getJailer() + " (" + p.getRemainingTimeInMinutes() + " mins)");
}
}
}