summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIaccidentally <coryhuckaby@gmail.com>2012-10-28 15:01:54 -0300
committerIaccidentally <coryhuckaby@gmail.com>2012-10-28 15:01:54 -0300
commit5e476f4d6167eeb562be5eec8811de63354859d6 (patch)
treeb39d480e9d7ff75a6ea626f7a7eb438de02cfc95
parent5bc1b8df706810829947134240e345402f893abb (diff)
downloadEssentials-5e476f4d6167eeb562be5eec8811de63354859d6.tar
Essentials-5e476f4d6167eeb562be5eec8811de63354859d6.tar.gz
Essentials-5e476f4d6167eeb562be5eec8811de63354859d6.tar.lz
Essentials-5e476f4d6167eeb562be5eec8811de63354859d6.tar.xz
Essentials-5e476f4d6167eeb562be5eec8811de63354859d6.zip
Update Essentials/src/com/earth2me/essentials/commands/Commandtppos.java
2.9 too
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtppos.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtppos.java b/Essentials/src/com/earth2me/essentials/commands/Commandtppos.java
index 4e78b0e1b..ddc86f19c 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtppos.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtppos.java
@@ -36,7 +36,7 @@ public class Commandtppos extends EssentialsCommand
{
location.setPitch(Float.parseFloat(args[4]));
}
- if (x > 30000000 || y > 30000000 || z > 30000000 || x < -30000000 || y < 30000000 || z < 30000000)
+ if (x > 30000000 || y > 30000000 || z > 30000000 || x < -30000000 || y < -30000000 || z < -30000000)
{
throw new NotEnoughArgumentsException("Value of coordinates cannot be over 30000000"); //todo: I18n
}
@@ -68,7 +68,7 @@ public class Commandtppos extends EssentialsCommand
{
location.setPitch(Float.parseFloat(args[5]));
}
- if (x > 30000000 || y > 30000000 || z > 30000000 || x < -30000000 || y < 30000000 || z < 30000000)
+ if (x > 30000000 || y > 30000000 || z > 30000000 || x < -30000000 || y < -30000000 || z < -30000000)
{
throw new NotEnoughArgumentsException("Value of coordinates cannot be over 30000000"); //todo: I18n
}