1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-30 11:19:17 +02:00

Made Location.clone() public.

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-08 12:39:54 -08:00
parent b94f401b3a
commit 75aa4ef4c5

View file

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