Made Location.clone() public.

This commit is contained in:
sk89q 2011-01-08 12:39:54 -08:00
parent 373c958596
commit 3b1f74e6c5

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);
} }
} }