summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java14
1 files changed, 4 insertions, 10 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java
index 50f4d74fe..eb9c3538c 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpohere.java
@@ -22,7 +22,7 @@ public class Commandtpohere extends EssentialsCommand
}
//Just basically the old tphere command
- final User player = getPlayer(server, args, 0, true, false);
+ final User player = getPlayer(server, user, args, 0);
if (user.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions()
&& !user.isAuthorized("essentials.worlds." + user.getWorld().getName()))
@@ -31,14 +31,8 @@ public class Commandtpohere extends EssentialsCommand
}
// Verify permission
- if (!player.isHidden() || user.isAuthorized("essentials.teleport.hidden"))
- {
- player.getTeleport().now(user, false, TeleportCause.COMMAND);
- user.sendMessage(_("teleporting"));
- }
- else
- {
- throw new NoSuchFieldException(_("playerNotFound"));
- }
+ player.getTeleport().now(user, false, TeleportCause.COMMAND);
+ user.sendMessage(_("teleporting"));
+
}
}