summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2010-12-29 01:15:16 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2010-12-29 01:15:16 +0000
commitb9801a50da4128cc6198ecbe31caa77b6dba4188 (patch)
tree494aee8bd2251b1da13e2e75580684b6a4ab845e
parent3f78497752cf1a23f56bb0a018b50f3db9d66638 (diff)
downloadbukkit-b9801a50da4128cc6198ecbe31caa77b6dba4188.tar
bukkit-b9801a50da4128cc6198ecbe31caa77b6dba4188.tar.gz
bukkit-b9801a50da4128cc6198ecbe31caa77b6dba4188.tar.lz
bukkit-b9801a50da4128cc6198ecbe31caa77b6dba4188.tar.xz
bukkit-b9801a50da4128cc6198ecbe31caa77b6dba4188.zip
Swapped yaw/pitch in Location constructor to match Minecraft
-rw-r--r--src/org/bukkit/Location.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/bukkit/Location.java b/src/org/bukkit/Location.java
index 95a57cda..6692bd0b 100644
--- a/src/org/bukkit/Location.java
+++ b/src/org/bukkit/Location.java
@@ -16,7 +16,7 @@ public class Location {
this(world, x, y, z, 0, 0);
}
- public Location(final World world, final double x, final double y, final double z, final float pitch, final float yaw) {
+ public Location(final World world, final double x, final double y, final double z, final float yaw, final float pitch) {
this.world = world;
this.x = x;
this.y = y;