Readd the method I removed and also change the cells to uuid.

This commit is contained in:
graywolf336
2014-04-29 10:53:36 -05:00
parent 63e117ac72
commit ad9c70cbbf
5 changed files with 22 additions and 12 deletions

View File

@ -1,6 +1,7 @@
package com.graywolf336.jail.command.subcommands;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import com.graywolf336.jail.JailManager;
import com.graywolf336.jail.beans.Prisoner;
@ -11,7 +12,7 @@ import com.graywolf336.jail.enums.LangString;
@CommandInfo(
maxArgs = 0,
minimumArgs = 0,
needsPlayer = false,
needsPlayer = true,
pattern = "status|time",
permission = "jail.usercmd.jailstatus",
usage = "/jail status"
@ -19,8 +20,10 @@ import com.graywolf336.jail.enums.LangString;
public class JailStatusCommand implements Command{
public boolean execute(JailManager jm, CommandSender sender, String... args) {
if(jm.isPlayerJailed(sender.getName())) {
Prisoner p = jm.getPrisoner(sender.getName());
Player pl = (Player) sender;
if(jm.isPlayerJailed(pl.getUniqueId())) {
Prisoner p = jm.getPrisoner(pl.getUniqueId());
//They are jailed, so let's tell them some information
sender.sendMessage(jm.getPlugin().getJailIO().getLanguageString(LangString.STATUS, new String[] { p.getReason(), p.getJailer(), String.valueOf(p.getRemainingTimeInMinutes()) }));
}else {