diff options
author | Iaccidentally <coryhuckaby@gmail.com> | 2012-10-28 15:00:30 -0300 |
---|---|---|
committer | Iaccidentally <coryhuckaby@gmail.com> | 2012-10-28 15:00:30 -0300 |
commit | 0f418fc3482fe416e633561c7788abad26ef6a18 (patch) | |
tree | 0f98a2445949c3b5f02cd89b6567902854bd9022 | |
parent | 9038036abf70e30f409a401be703829bc6c40a98 (diff) | |
download | Essentials-0f418fc3482fe416e633561c7788abad26ef6a18.tar Essentials-0f418fc3482fe416e633561c7788abad26ef6a18.tar.gz Essentials-0f418fc3482fe416e633561c7788abad26ef6a18.tar.lz Essentials-0f418fc3482fe416e633561c7788abad26ef6a18.tar.xz Essentials-0f418fc3482fe416e633561c7788abad26ef6a18.zip |
Update Essentials/src/net/ess3/commands/Commandtppos.java
copy-paste fail :<
-rw-r--r-- | Essentials/src/net/ess3/commands/Commandtppos.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/net/ess3/commands/Commandtppos.java b/Essentials/src/net/ess3/commands/Commandtppos.java index e623eca62..09a3efcde 100644 --- a/Essentials/src/net/ess3/commands/Commandtppos.java +++ b/Essentials/src/net/ess3/commands/Commandtppos.java @@ -30,7 +30,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 } @@ -62,7 +62,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 } |