Made Location.clone() public.

This commit is contained in:
sk89q
2011-01-08 12:39:54 -08:00
parent dac484d4f8
commit 61e9e645e8

View File

@@ -215,7 +215,7 @@ public class Location implements Cloneable {
} }
@Override @Override
protected Location clone() { public Location clone() {
return new Location(world, x, y, z, yaw, pitch); return new Location(world, x, y, z, yaw, pitch);
} }
} }