Skip to content

Commit

Permalink
Fix error in dLocation constructor
Browse files Browse the repository at this point in the history
I have no idea how long this has been here, or what kind of trouble it's
made.
  • Loading branch information
Morphan1 committed Dec 11, 2013
1 parent 9bd312a commit 2e19749
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -244,7 +244,7 @@ public dLocation(World world, double x, double y, double z) {
}

public dLocation(World world, double x, double y, double z, float yaw, float pitch) {
super(world, x, y, z, pitch, yaw);
super(world, x, y, z, yaw, pitch);
}


Expand Down

0 comments on commit 2e19749

Please sign in to comment.