3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Added a new utility method to BukkitUtil to do the common task of shifting coordinates for an entity to the center of a block.

Dieser Commit ist enthalten in:
hash 2011-06-15 20:01:03 -05:00
Ursprung 4aaa127efe
Commit 1784b29f02

Datei anzeigen

@ -71,6 +71,17 @@ public class BukkitUtil {
return new Location(world, pt.getX(), pt.getY(), pt.getZ());
}
public static Location center(Location loc) {
return new Location(
loc.getWorld(),
loc.getBlockX()+0.5,
loc.getBlockY()+0.5,
loc.getBlockZ()+0.5,
loc.getPitch(),
loc.getYaw()
);
}
public static Player matchSinglePlayer(Server server, String name) {
List<Player> players = server.matchPlayer(name);
if (players.size() == 0) {