Fixed bug where you could TP to dead players

This commit is contained in:
GJ
2012-03-27 23:04:00 -04:00
parent 5e12979f09
commit ef3d76fb9f
2 changed files with 7 additions and 0 deletions

View File

@ -64,6 +64,11 @@ public class PtpCommand implements CommandExecutor {
Player target = plugin.getServer().getPlayer(args[0]);
PlayerProfile PPt = Users.getProfile(target);
if (target.isDead()) {
player.sendMessage(ChatColor.RED + "You can't teleport to dead players."); //TODO: Needs more locale.
return true;
}
if (PP.getParty().equals(PPt.getParty())) {
McMMOPartyTeleportEvent event = new McMMOPartyTeleportEvent(player, target, PP.getParty());
Bukkit.getPluginManager().callEvent(event);