Fixed some errors with /tpback

This commit is contained in:
nossr50 2011-01-05 07:50:57 -08:00
parent 7a234a1be6
commit 0d32acfe0b

View File

@ -1267,7 +1267,7 @@ private static HashMap<String, Player> hidden = new HashMap<String, Player>();
//If the target exists, teleport them to the user //If the target exists, teleport them to the user
else { else {
log.log(Level.INFO, player.getName() + " teleported " log.log(Level.INFO, player.getName() + " teleported "
+ player.getName() + " to their self."); + playerTarget.getName() + " to their self.");
playerTarget.teleportTo(player); playerTarget.teleportTo(player);
double x = player.getLocation().x; double x = player.getLocation().x;
double y = player.getLocation().y; double y = player.getLocation().y;
@ -1279,8 +1279,8 @@ private static HashMap<String, Player> hidden = new HashMap<String, Player>();
vMinecraftUsers.getProfile(playerTarget).setTpback(xyz); vMinecraftUsers.getProfile(playerTarget).setTpback(xyz);
if(playerTarget.canUseCommand("/tpback")) if(playerTarget.canUseCommand("/tpback"))
{ {
player.sendMessage(Colors.DarkPurple + "Your previous location has been stored"); playerTarget.sendMessage(Colors.DarkPurple + "Your previous location has been stored");
player.sendMessage(Colors.DarkPurple + "Use /tpback to return"); playerTarget.sendMessage(Colors.DarkPurple + "Use /tpback to return");
} }
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;