diff options
author | KHobbits <rob@khobbits.co.uk> | 2014-07-06 18:29:15 +0100 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2014-07-06 18:41:12 +0100 |
commit | 97c8f5192efdaed644ea84707bbc530022f3b651 (patch) | |
tree | 8098386bc707d0ce92209c6a28a28049f234485d | |
parent | 7c372cd978ae2f15e877a983489f7e5e25c529c0 (diff) | |
download | Essentials-97c8f5192efdaed644ea84707bbc530022f3b651.tar Essentials-97c8f5192efdaed644ea84707bbc530022f3b651.tar.gz Essentials-97c8f5192efdaed644ea84707bbc530022f3b651.tar.lz Essentials-97c8f5192efdaed644ea84707bbc530022f3b651.tar.xz Essentials-97c8f5192efdaed644ea84707bbc530022f3b651.zip |
New permission :essentials.tp.position Required to use /tp [player] <x> <y> <z>
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandtp.java | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtp.java b/Essentials/src/com/earth2me/essentials/commands/Commandtp.java index a4d94bcde..ee3938804 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandtp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandtp.java @@ -41,6 +41,10 @@ public class Commandtp extends EssentialsCommand user.getTeleport().teleport(player.getBase(), charge, TeleportCause.COMMAND); throw new NoChargeException(); case 3: + if (!user.isAuthorized("essentials.tp.position")) + { + throw new Exception(tl("noPerm", "essentials.tp.position")); + } final double x2 = args[0].startsWith("~") ? user.getLocation().getX() + Integer.parseInt(args[0].substring(1)) : Integer.parseInt(args[0]); final double y2 = args[1].startsWith("~") ? user.getLocation().getY() + Integer.parseInt(args[1].substring(1)) : Integer.parseInt(args[1]); final double z2 = args[2].startsWith("~") ? user.getLocation().getZ() + Integer.parseInt(args[2].substring(1)) : Integer.parseInt(args[2]); @@ -48,19 +52,19 @@ public class Commandtp extends EssentialsCommand { throw new NotEnoughArgumentsException(tl("teleportInvalidLocation")); } - final Location loc2 = new Location(user.getWorld(), x2, y2, z2, user.getLocation().getYaw(), user.getLocation().getPitch()); - if (!user.isTeleportEnabled()) - { - throw new Exception(tl("teleportDisabled", user.getDisplayName())); - } - user.getTeleport().now(loc2, false, TeleportCause.COMMAND); - user.sendMessage(tl("teleporting", loc2.getWorld().getName(), loc2.getBlockX(), loc2.getBlockY(), loc2.getBlockZ())); + final Location locpos = new Location(user.getWorld(), x2, y2, z2, user.getLocation().getYaw(), user.getLocation().getPitch()); + user.getTeleport().now(locpos, false, TeleportCause.COMMAND); + user.sendMessage(tl("teleporting", locpos.getWorld().getName(), locpos.getBlockX(), locpos.getBlockY(), locpos.getBlockZ())); break; case 4: if (!user.isAuthorized("essentials.tp.others")) { throw new Exception(tl("noPerm", "essentials.tp.others")); } + if (!user.isAuthorized("essentials.tp.position")) + { + throw new Exception(tl("noPerm", "essentials.tp.position")); + } final User target2 = getPlayer(server, user, args, 0); final double x = args[1].startsWith("~") ? target2.getLocation().getX() + Integer.parseInt(args[1].substring(1)) : Integer.parseInt(args[1]); final double y = args[2].startsWith("~") ? target2.getLocation().getY() + Integer.parseInt(args[2].substring(1)) : Integer.parseInt(args[2]); @@ -69,14 +73,14 @@ public class Commandtp extends EssentialsCommand { throw new NotEnoughArgumentsException(tl("teleportInvalidLocation")); } - final Location loc = new Location(target2.getWorld(), x, y, z, target2.getLocation().getYaw(), target2.getLocation().getPitch()); + final Location locposother = new Location(target2.getWorld(), x, y, z, target2.getLocation().getYaw(), target2.getLocation().getPitch()); if (!target2.isTeleportEnabled()) { throw new Exception(tl("teleportDisabled", target2.getDisplayName())); } - user.sendMessage(tl("teleporting", loc.getWorld().getName(), loc.getBlockX(), loc.getBlockY(), loc.getBlockZ())); - target2.getTeleport().now(loc, false, TeleportCause.COMMAND); - target2.sendMessage(tl("teleporting", loc.getWorld().getName(), loc.getBlockX(), loc.getBlockY(), loc.getBlockZ())); + user.sendMessage(tl("teleporting", locposother.getWorld().getName(), locposother.getBlockX(), locposother.getBlockY(), locposother.getBlockZ())); + target2.getTeleport().now(locposother, false, TeleportCause.COMMAND); + target2.sendMessage(tl("teleporting", locposother.getWorld().getName(), locposother.getBlockX(), locposother.getBlockY(), locposother.getBlockZ())); break; case 2: default: |