Add the missing space between jailer and remaining time

This commit is contained in:
graywolf336 2014-02-10 14:56:25 -06:00
parent 96a58aa3df
commit d8611a51bc

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() + ")");
}
}
}