Fix anchor direction, Fixes #283

This commit is contained in:
Eric Stokes 2011-11-30 19:38:35 -07:00
parent df5bfdde80
commit ee75392a9e

View File

@ -49,8 +49,8 @@ public class LocationManipulation {
l.append(location.getBlockX() + ",");
l.append(location.getBlockY() + ",");
l.append(location.getBlockZ() + ":");
l.append(location.getPitch() + ":");
l.append(location.getYaw());
l.append(location.getYaw() + ":");
l.append(location.getPitch());
return l.toString();
}