1
0
mirror of https://github.com/Multiverse/Multiverse-Core.git synced 2025-03-12 22:59:24 +01:00

Fix anchor direction, Fixes

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.getBlockX() + ",");
l.append(location.getBlockY() + ","); l.append(location.getBlockY() + ",");
l.append(location.getBlockZ() + ":"); l.append(location.getBlockZ() + ":");
l.append(location.getPitch() + ":"); l.append(location.getYaw() + ":");
l.append(location.getYaw()); l.append(location.getPitch());
return l.toString(); return l.toString();
} }