Fixed exploit where you could teleport to yourself...

This commit is contained in:
GJ 2012-04-27 02:21:25 -04:00
parent b9c8fed01f
commit e3803702c5

View File

@ -51,6 +51,10 @@ public class PtpCommand implements CommandExecutor {
Player target = plugin.getServer().getPlayer(args[0]);
if (player.equals(target)) {
player.sendMessage("You can't teleport to yourself!"); //TODO: Use locale
}
if (target == null) {
player.sendMessage(mcLocale.getString("Party.Teleport.Invalid"));
return true;