From b9801a50da4128cc6198ecbe31caa77b6dba4188 Mon Sep 17 00:00:00 2001 From: Dinnerbone Date: Wed, 29 Dec 2010 01:15:16 +0000 Subject: [PATCH] Swapped yaw/pitch in Location constructor to match Minecraft --- src/org/bukkit/Location.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;