--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/TeleportCommand.java 2011/08/08 15:44:27 1587 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/TeleportCommand.java 2011/08/14 11:05:33 1588 @@ -1,5 +1,6 @@ package dk.thoerup.bukkit.hoeruputils; +import org.bukkit.ChatColor; import org.bukkit.Location; import org.bukkit.World; import org.bukkit.command.Command; @@ -45,6 +46,9 @@ p.sendMessage("you can't tp a player to himself"); return true; } + dest.sendMessage( ChatColor.GRAY + source.getName() + " was teleported to you."); + source.sendMessage( ChatColor.GRAY + "You was teleported to " + dest.getName() ); + source.teleport( dest ); return true;