13
0
geforkt von Mirrors/Paper

Made Location.clone() public.

By: sk89q <the.sk89q@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-01-08 12:39:54 -08:00
Ursprung b94f401b3a
Commit 75aa4ef4c5

Datei anzeigen

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