2013-12-25 00:51:41 +01:00
|
|
|
package com.graywolf336.jail;
|
|
|
|
|
2013-12-26 06:20:52 +01:00
|
|
|
import org.bukkit.GameMode;
|
2013-12-28 22:08:24 +01:00
|
|
|
import org.bukkit.Material;
|
2013-12-25 05:25:14 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2013-12-28 01:19:47 +01:00
|
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
2013-12-25 05:25:14 +01:00
|
|
|
|
|
|
|
import com.graywolf336.jail.beans.Cell;
|
|
|
|
import com.graywolf336.jail.beans.Jail;
|
|
|
|
import com.graywolf336.jail.beans.Prisoner;
|
|
|
|
import com.graywolf336.jail.enums.LangString;
|
|
|
|
import com.graywolf336.jail.enums.Settings;
|
|
|
|
|
2013-12-29 02:50:55 +01:00
|
|
|
/**
|
|
|
|
* Provides methods, non-statically, that do the preparing of jails and handle all the good stuff like that.
|
|
|
|
*
|
|
|
|
* @author graywolf336
|
|
|
|
* @since 2.x.x
|
|
|
|
* @version 3.0.0
|
|
|
|
*/
|
2013-12-25 00:51:41 +01:00
|
|
|
public class PrisonerManager {
|
|
|
|
private JailMain pl;
|
|
|
|
|
|
|
|
public PrisonerManager(JailMain plugin) {
|
|
|
|
this.pl = plugin;
|
|
|
|
}
|
|
|
|
|
2013-12-25 05:25:14 +01:00
|
|
|
/**
|
2013-12-29 02:50:55 +01:00
|
|
|
* Does everything preparing for the jailing of the provided prisoner, if they are online it forwards it to {@link #jailPrisoner(Jail, Cell, Player, Prisoner)}.
|
2013-12-25 05:25:14 +01:00
|
|
|
*
|
2013-12-27 21:16:08 +01:00
|
|
|
* <p />
|
|
|
|
*
|
|
|
|
* In this we do the following:
|
|
|
|
* <ol>
|
|
|
|
* <li>Checks if the jail is null, if so it throws an Exception</li>
|
|
|
|
* <li>Checks if the prisoner is null, if so it throws an Exception</li>
|
|
|
|
* <li>Sets the prisoner data to offline pending or not, player == null</li>
|
|
|
|
* <li>If the cell is null, add the prisoner data to the jail otherwise we set the cell's prisoner to this one. <em>Check before here if the cell already contains a prisoner.</em></li>
|
|
|
|
* <li>Saves the jail information, goes out to the {@link JailIO} to initate a save.</li>
|
|
|
|
* <li>If the prisoner is <em>not</em> offline, we will actually {@link #jailPrisoner(Jail, Cell, Player, Prisoner) jail} them now.</li>
|
|
|
|
* <li>Does checks to get the right message for the next two items.</li>
|
|
|
|
* <li>If we broadcast the jailing, then let's broadcast it.</li>
|
|
|
|
* <li>If we log the jailing to console <em>and</em> we haven't broadcasted it, then we log it to the console.</li>
|
|
|
|
* </ol>
|
|
|
|
*
|
2013-12-29 02:50:55 +01:00
|
|
|
* @param jail The {@link Jail jail instance} we are sending this prisoner to
|
|
|
|
* @param cell The name of the {@link Cell cell} we are sending this prisoner to
|
|
|
|
* @param player The {@link Player player} we are preparing the jail for.
|
|
|
|
* @param prisoner The {@link Prisoner prisoner} file.
|
2013-12-25 06:12:24 +01:00
|
|
|
* @throws Exception if the jail or prisoner are null.
|
2013-12-25 05:25:14 +01:00
|
|
|
*/
|
|
|
|
public void prepareJail(Jail jail, Cell cell, Player player, Prisoner prisoner) throws Exception {
|
|
|
|
//Do some checks of whether the passed params are null.
|
|
|
|
if(jail == null)
|
|
|
|
throw new Exception("The jail can not be null.");
|
|
|
|
|
|
|
|
if(prisoner == null)
|
|
|
|
throw new Exception("Prisoner data can not be null.");
|
|
|
|
|
|
|
|
//Set whether the prisoner is offline or not.
|
|
|
|
prisoner.setOfflinePending(player == null);
|
|
|
|
|
|
|
|
//Now that we've got those checks out of the way, let's start preparing.
|
|
|
|
if(cell == null) {
|
|
|
|
jail.addPrisoner(prisoner);
|
|
|
|
}else {
|
2013-12-27 21:16:08 +01:00
|
|
|
cell.setPrisoner(prisoner);
|
2013-12-25 05:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Save the jail after adding them to the jail
|
|
|
|
pl.getJailIO().saveJail(jail);
|
|
|
|
|
2013-12-25 06:12:24 +01:00
|
|
|
//If they are NOT offline, jail them
|
|
|
|
if(!prisoner.isOfflinePending()) {
|
2013-12-26 04:56:01 +01:00
|
|
|
jailPrisoner(jail, cell, player, prisoner);
|
2013-12-25 05:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Get a message ready for broadcasting or logging.
|
|
|
|
String msg = "";
|
|
|
|
|
2013-12-28 19:53:07 +01:00
|
|
|
if(prisoner.getRemainingTime() < 0L)
|
2013-12-25 05:25:14 +01:00
|
|
|
msg = pl.getJailIO().getLanguageString(LangString.BROADCASTMESSAGEFOREVER, new String[] { prisoner.getName() });
|
|
|
|
else//
|
|
|
|
msg = pl.getJailIO().getLanguageString(LangString.BROADCASTMESSAGEFOREVER, new String[] { prisoner.getName(), String.valueOf(prisoner.getRemainingTimeInMinutes()) });
|
|
|
|
|
2013-12-25 06:29:51 +01:00
|
|
|
boolean broadcasted = false;
|
2013-12-25 05:25:14 +01:00
|
|
|
//Broadcast the message, if it is enabled
|
|
|
|
if(pl.getConfig().getBoolean(Settings.BROADCASTJAILING.getPath(), false)) {
|
|
|
|
pl.getServer().broadcastMessage(msg);
|
2013-12-25 06:29:51 +01:00
|
|
|
broadcasted = true;
|
2013-12-25 05:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Log the message, if it is enabled
|
2013-12-25 06:29:51 +01:00
|
|
|
if(pl.getConfig().getBoolean(Settings.LOGJAILING.getPath(), true) && !broadcasted) {
|
2013-12-25 06:24:30 +01:00
|
|
|
pl.getServer().getConsoleSender().sendMessage(msg);
|
2013-12-25 05:25:14 +01:00
|
|
|
}
|
2013-12-25 00:51:41 +01:00
|
|
|
}
|
2013-12-26 04:56:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Jails the prisoner with the given name.
|
|
|
|
*
|
|
|
|
* @param name of the prisoner to jail.
|
|
|
|
*/
|
|
|
|
public void jailPrisoner(String name) {
|
|
|
|
Jail j = pl.getJailManager().getJailPlayerIsIn(name);
|
|
|
|
|
|
|
|
jailPrisoner(j, j.getCellPrisonerIsIn(name), pl.getServer().getPlayerExact(name), j.getPrisoner(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Jails the prisoner with the proper information given.
|
|
|
|
*
|
|
|
|
* @param jail where they are going
|
|
|
|
* @param cell where they are being placed in, can be null
|
|
|
|
* @param player who is the prisoner
|
|
|
|
* @param prisoner data containing everything pertaining to them
|
|
|
|
*/
|
|
|
|
public void jailPrisoner(Jail jail, Cell cell, Player player, Prisoner prisoner) {
|
2014-01-01 23:19:04 +01:00
|
|
|
//If they have handcuffs on them, then let's remove them before we continue
|
|
|
|
//this way the handcuff listeners and this aren't battleing each other
|
|
|
|
if(pl.getHandCuffManager().isHandCuffed(player.getName())) {
|
|
|
|
pl.getHandCuffManager().removeHandCuffs(player.getName());
|
|
|
|
}
|
|
|
|
|
2013-12-26 04:56:01 +01:00
|
|
|
//They are no longer offline, so set that.
|
|
|
|
prisoner.setOfflinePending(false);
|
|
|
|
|
|
|
|
//We are getting ready to teleport them, so set it to true so that
|
2013-12-28 22:08:24 +01:00
|
|
|
//the *future* move checkers won't be canceling our moving.
|
2013-12-26 04:56:01 +01:00
|
|
|
prisoner.setTeleporting(true);
|
|
|
|
|
|
|
|
//If their reason is empty send proper message, else send other proper message
|
|
|
|
if(prisoner.getReason().isEmpty()) {
|
|
|
|
player.sendMessage(pl.getJailIO().getLanguageString(LangString.JAILED));
|
|
|
|
}else {
|
|
|
|
player.sendMessage(pl.getJailIO().getLanguageString(LangString.JAILEDWITHREASON, new String[] { prisoner.getReason() }));
|
|
|
|
}
|
|
|
|
|
|
|
|
//If the config has inventory deletion, then let's delete it
|
|
|
|
if(pl.getConfig().getBoolean(Settings.DELETEINVENTORY.getPath(), false)) {
|
|
|
|
player.getInventory().setArmorContents(null);
|
|
|
|
player.getInventory().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//If the config has releasing them back to their previous position,
|
|
|
|
//then let's set it in the prisoner data.
|
|
|
|
if(pl.getConfig().getBoolean(Settings.RELEASETOPREVIOUSPOSITION.getPath(), false)) {
|
|
|
|
prisoner.setPreviousPosition(player.getLocation());
|
|
|
|
}
|
2013-12-26 05:57:09 +01:00
|
|
|
|
|
|
|
//If the config has restoring their previous gamemode enabled,
|
|
|
|
//then let's set it in their prisoner data.
|
|
|
|
if(pl.getConfig().getBoolean(Settings.RESTOREPREVIOUSGAMEMODE.getPath(), false)) {
|
|
|
|
prisoner.setPreviousGameMode(player.getGameMode());
|
|
|
|
}
|
2013-12-26 06:20:52 +01:00
|
|
|
|
|
|
|
//Set their gamemode to the one in the config, if we get a null value
|
|
|
|
//from the parsing then we set theirs to adventure
|
2013-12-26 06:28:01 +01:00
|
|
|
try {
|
|
|
|
player.setGameMode(GameMode.valueOf(pl.getConfig().getString(Settings.JAILEDGAMEMODE.getPath(), "ADVENTURE").toUpperCase()));
|
|
|
|
}catch(Exception e) {
|
|
|
|
pl.getLogger().severe("Your jailedgamemode setting is incorrect, please fix.");
|
|
|
|
player.setGameMode(GameMode.ADVENTURE);
|
|
|
|
}
|
2013-12-26 06:20:52 +01:00
|
|
|
|
|
|
|
//only eject them if they're inside a vehicle and also eject anyone else on top of them
|
|
|
|
if(player.isInsideVehicle()) {
|
|
|
|
player.getVehicle().eject();
|
2013-12-26 07:00:33 +01:00
|
|
|
player.getPassenger().eject();
|
|
|
|
player.eject();
|
2013-12-26 06:20:52 +01:00
|
|
|
}
|
2013-12-27 21:16:08 +01:00
|
|
|
|
2013-12-28 01:19:47 +01:00
|
|
|
//If we are ignoring the sleeping state of prisoners,
|
|
|
|
//then let's set that
|
|
|
|
if(pl.getConfig().getBoolean(Settings.IGNORESLEEPINGSTATE.getPath(), true)) {
|
|
|
|
player.setSleepingIgnored(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Get the max and min food level in the config
|
|
|
|
int maxFood = pl.getConfig().getInt(Settings.MAXFOODLEVEL.getPath(), 20);
|
|
|
|
int minFood = pl.getConfig().getInt(Settings.MINFOODLEVEL.getPath(), 10);
|
|
|
|
|
|
|
|
//If their food level is less than the min food level, set it to the min
|
|
|
|
//but if it is higher than the max, set it to the max
|
|
|
|
if (player.getFoodLevel() < minFood) {
|
|
|
|
player.setFoodLevel(minFood);
|
|
|
|
} else if (player.getFoodLevel() > maxFood) {
|
|
|
|
player.setFoodLevel(maxFood);
|
|
|
|
}
|
|
|
|
|
2013-12-27 21:16:08 +01:00
|
|
|
//If the cell doesn't equal null, then let's put them in the jail
|
|
|
|
if(cell != null) {
|
2013-12-28 01:19:47 +01:00
|
|
|
//check if we store the inventory
|
|
|
|
if(pl.getConfig().getBoolean(Settings.JAILEDSTOREINVENTORY.getPath(), true)) {
|
|
|
|
//Check if there is a chest to store our items to and if it is a double chest, if not we will then serialize it
|
|
|
|
if(cell.hasChest()) {
|
|
|
|
//Get the chest's inventory and then clear it
|
|
|
|
Inventory chest = cell.getChest().getInventory();
|
|
|
|
chest.clear();
|
|
|
|
|
|
|
|
//Get the separate inventory, so we can iterate of them
|
|
|
|
ItemStack[] inventory = player.getInventory().getContents();
|
|
|
|
ItemStack[] armor = player.getInventory().getArmorContents();
|
|
|
|
|
|
|
|
for(ItemStack item : inventory) {
|
|
|
|
int i = chest.firstEmpty();
|
|
|
|
if(i != -1) {//Check that we have got a free spot, should never happen but just in case
|
|
|
|
chest.setItem(i, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(ItemStack item : armor) {
|
|
|
|
int i = chest.firstEmpty();
|
|
|
|
if(i != -1) {//Check that we have got a free spot, should never happen but just in case
|
|
|
|
chest.setItem(i, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
player.getInventory().setArmorContents(null);
|
|
|
|
player.getInventory().clear();
|
|
|
|
|
|
|
|
//Here so we don't forget about it later as this method isn't finished, but
|
|
|
|
//Updates the cell's signs
|
|
|
|
cell.update();
|
|
|
|
}else {
|
|
|
|
String[] inv = Util.playerInventoryToBase64(player.getInventory());
|
|
|
|
prisoner.setInventory(inv[0]);
|
|
|
|
prisoner.setArmor(inv[1]);
|
2013-12-28 19:53:07 +01:00
|
|
|
|
|
|
|
player.getInventory().setArmorContents(null);
|
|
|
|
player.getInventory().clear();
|
2013-12-28 01:19:47 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-27 21:16:08 +01:00
|
|
|
|
2013-12-28 01:19:47 +01:00
|
|
|
//Teleport them to the cell's teleport location
|
|
|
|
//they will now be placed in jail.
|
|
|
|
player.teleport(cell.getTeleport());
|
2013-12-27 21:16:08 +01:00
|
|
|
}else {
|
|
|
|
//There is no cell we're jailing them to, so stick them in the jail
|
2013-12-28 01:19:47 +01:00
|
|
|
if(pl.getConfig().getBoolean(Settings.JAILEDSTOREINVENTORY.getPath(), true)) {
|
|
|
|
String[] inv = Util.playerInventoryToBase64(player.getInventory());
|
|
|
|
prisoner.setInventory(inv[0]);
|
|
|
|
prisoner.setArmor(inv[1]);
|
|
|
|
|
|
|
|
player.getInventory().setArmorContents(null);
|
|
|
|
player.getInventory().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Teleport them to the jail's teleport in location
|
|
|
|
//They will now be placed in jail.
|
|
|
|
player.teleport(jail.getTeleportIn());
|
2013-12-27 21:16:08 +01:00
|
|
|
}
|
2013-12-28 01:19:47 +01:00
|
|
|
|
|
|
|
//Set them to not allowing teleporting, as we are not going to be moving them anymore
|
|
|
|
//this way the move checkers will start checking this player.
|
|
|
|
prisoner.setTeleporting(false);
|
|
|
|
|
|
|
|
//Get the commands to execute after they are jailed
|
|
|
|
//replace all of the %p% so that the commands can have a player name in them
|
|
|
|
for(String command : pl.getConfig().getStringList(Settings.COMMANDSONJAIL.getPath())) {
|
|
|
|
command = command.replaceAll("%p%", player.getName());
|
|
|
|
pl.getServer().dispatchCommand(pl.getServer().getConsoleSender(), command);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Save the data, as we have changed it
|
|
|
|
pl.getJailIO().saveJail(jail);
|
2013-12-26 04:56:01 +01:00
|
|
|
}
|
2013-12-28 22:08:24 +01:00
|
|
|
|
2014-01-03 21:10:38 +01:00
|
|
|
/**
|
|
|
|
* Release the given prisoner from jailing, does the checks if they are offline or not.
|
|
|
|
*
|
|
|
|
* @param player we are releasing, can be null and if so they'll be treated as offline.
|
|
|
|
* @param prisoner data to handle.
|
|
|
|
*/
|
|
|
|
public void releasePrisoner(Player player, Prisoner prisoner) {
|
|
|
|
if(player == null) {
|
|
|
|
prisoner.setOfflinePending(true);
|
|
|
|
prisoner.setRemainingTime(0);
|
|
|
|
}else {
|
|
|
|
Jail j = pl.getJailManager().getJailPlayerIsIn(player.getName());
|
|
|
|
|
|
|
|
try {
|
|
|
|
unJail(j, j.getCellPrisonerIsIn(player.getName()), player, prisoner);
|
|
|
|
}catch(Exception e) {
|
|
|
|
pl.getLogger().severe("Unable to unjail the prisoner " + player.getName() + " because '" + e.getMessage() + "'.");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 22:08:24 +01:00
|
|
|
/**
|
|
|
|
* Unjails a prisoner from jail, removing all their data.
|
|
|
|
*
|
2013-12-29 02:50:55 +01:00
|
|
|
* <p />
|
|
|
|
*
|
|
|
|
* Throws an exception if either the jail is null or the prisoner is null.
|
2013-12-28 22:08:24 +01:00
|
|
|
*
|
2013-12-29 02:50:55 +01:00
|
|
|
* @param jail where the prisoner is located at
|
|
|
|
* @param cell which the prisoner is in, can be null
|
|
|
|
* @param player instance for the prisoner we're unjailing
|
|
|
|
* @param prisoner data where everything resides
|
2013-12-28 22:08:24 +01:00
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public void unJail(Jail jail, Cell cell, Player player, Prisoner prisoner) throws Exception {
|
|
|
|
//Do some checks of whether the passed params are null.
|
|
|
|
if(jail == null)
|
|
|
|
throw new Exception("The jail can not be null.");
|
|
|
|
|
|
|
|
if(prisoner == null)
|
|
|
|
throw new Exception("Prisoner data can not be null.");
|
|
|
|
|
|
|
|
//We are getting ready to teleport them, so set it to true so that
|
|
|
|
//the *future* move checkers won't be canceling our moving.
|
|
|
|
prisoner.setTeleporting(true);
|
|
|
|
|
|
|
|
//In case they have somehow got on a vehicle, let's unmount
|
|
|
|
//them so we can possibly teleport them
|
|
|
|
if(player.isInsideVehicle()) {
|
|
|
|
player.getVehicle().eject();
|
|
|
|
player.getPassenger().eject();
|
|
|
|
player.eject();
|
|
|
|
}
|
|
|
|
|
|
|
|
//In case we had set their sleeping state to be ignored
|
|
|
|
//let's enable their sleeping state taking place again
|
|
|
|
player.setSleepingIgnored(false);
|
|
|
|
|
|
|
|
//If the config has us teleporting them back to their previous position
|
|
|
|
//then let's do that, but if it doesn't yet it has the teleport on release
|
|
|
|
//then let's teleport them to the free teleport location
|
|
|
|
if(pl.getConfig().getBoolean(Settings.RELEASETOPREVIOUSPOSITION.getPath(), false)) {
|
|
|
|
player.teleport(prisoner.getPreviousLocation());
|
|
|
|
}else if(pl.getConfig().getBoolean(Settings.TELEPORTONRELEASE.getPath(), true)) {
|
|
|
|
player.teleport(jail.getTeleportFree());
|
|
|
|
}
|
|
|
|
|
|
|
|
//If we are to restore their previous gamemode and we have it stored,
|
|
|
|
//then by all means let's restore it
|
|
|
|
if(pl.getConfig().getBoolean(Settings.RESTOREPREVIOUSGAMEMODE.getPath(), false)) {
|
|
|
|
player.setGameMode(prisoner.getPreviousGameMode());
|
|
|
|
}
|
|
|
|
|
|
|
|
//Now, let's restore their inventory
|
|
|
|
//if the cell isn't null, let's check if the cell has a chest and if so then try out best to restore
|
|
|
|
//the prisoner's inventory from that
|
|
|
|
if(cell != null) {
|
|
|
|
if(cell.hasChest()) {
|
|
|
|
Inventory chest = cell.getChest().getInventory();
|
|
|
|
|
|
|
|
for (ItemStack item : chest.getContents()) {
|
|
|
|
if (item == null || item.getType() == Material.AIR) continue;
|
|
|
|
|
|
|
|
if(item.getType().toString().toLowerCase().contains("helmet") && (player.getInventory().getHelmet() == null || player.getInventory().getHelmet().getType() == Material.AIR)) {
|
|
|
|
player.getInventory().setHelmet(item);
|
|
|
|
} else if(item.getType().toString().toLowerCase().contains("chestplate") && (player.getInventory().getChestplate() == null || player.getInventory().getChestplate().getType() == Material.AIR)) {
|
|
|
|
player.getInventory().setChestplate(item);
|
|
|
|
} else if(item.getType().toString().toLowerCase().contains("leg") && (player.getInventory().getLeggings() == null || player.getInventory().getLeggings().getType() == Material.AIR)) {
|
|
|
|
player.getInventory().setLeggings(item);
|
|
|
|
} else if(item.getType().toString().toLowerCase().contains("boots") && (player.getInventory().getBoots() == null || player.getInventory().getBoots().getType() == Material.AIR)) {
|
|
|
|
player.getInventory().setBoots(item);
|
|
|
|
} else if (player.getInventory().firstEmpty() == -1) {
|
|
|
|
player.getWorld().dropItem(player.getLocation(), item);
|
|
|
|
} else {
|
|
|
|
player.getInventory().addItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
chest.clear();
|
|
|
|
}else {
|
2013-12-31 20:20:39 +01:00
|
|
|
Util.restoreInventory(player, prisoner);
|
2013-12-28 22:08:24 +01:00
|
|
|
}
|
|
|
|
|
2013-12-28 22:39:14 +01:00
|
|
|
pl.getJailIO().removePrisoner(jail, cell, prisoner);
|
2013-12-28 22:08:24 +01:00
|
|
|
cell.removePrisoner();
|
|
|
|
}else {
|
2013-12-31 20:20:39 +01:00
|
|
|
Util.restoreInventory(player, prisoner);
|
2013-12-28 22:39:14 +01:00
|
|
|
|
|
|
|
pl.getJailIO().removePrisoner(jail, prisoner);
|
2013-12-28 22:08:24 +01:00
|
|
|
jail.removePrisoner(prisoner);
|
|
|
|
}
|
2013-12-31 20:25:06 +01:00
|
|
|
|
|
|
|
//Get the commands to execute prisoners are unjailed
|
|
|
|
//replace all of the %p% so that the commands can have a player name in them
|
|
|
|
for(String command : pl.getConfig().getStringList(Settings.COMMANDSONRELEASE.getPath())) {
|
|
|
|
command = command.replaceAll("%p%", player.getName());
|
|
|
|
pl.getServer().dispatchCommand(pl.getServer().getConsoleSender(), command);
|
|
|
|
}
|
|
|
|
|
|
|
|
player.sendMessage(pl.getJailIO().getLanguageString(LangString.UNJAILED));
|
2013-12-28 22:08:24 +01:00
|
|
|
}
|
2013-12-25 00:51:41 +01:00
|
|
|
}
|