summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2014-07-06 18:29:15 +0100
committerKHobbits <rob@khobbits.co.uk>2014-07-06 18:41:12 +0100
commitcc5635ccb5fa63ad24f52742c63c909845cf9d1d (patch)
tree16b54b156a205b4ff2558728adc09340dc4f20a7
parent52f0dd91492479bb2d43c6d4c1052b5b1cf341f5 (diff)
downloadEssentials-cc5635ccb5fa63ad24f52742c63c909845cf9d1d.tar
Essentials-cc5635ccb5fa63ad24f52742c63c909845cf9d1d.tar.gz
Essentials-cc5635ccb5fa63ad24f52742c63c909845cf9d1d.tar.lz
Essentials-cc5635ccb5fa63ad24f52742c63c909845cf9d1d.tar.xz
Essentials-cc5635ccb5fa63ad24f52742c63c909845cf9d1d.zip
New permission :essentials.tp.position Required to use /tp [player] <x> <y> <z>
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtp.java26
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: