浏览代码

Fixed some errors with /tpback

nossr50 14 年之前
父节点
当前提交
0d32acfe0b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      vMinecraftCommands.java

+ 3 - 3
vMinecraftCommands.java

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