geforkt von Mirrors/FastAsyncWorldEdit
Bugfix last.
Dieser Commit ist enthalten in:
Ursprung
e6f3a1b5af
Commit
18c192f5a9
@ -66,6 +66,10 @@ public class BukkitUtil {
|
|||||||
public static Location toLocation(WorldVector pt) {
|
public static Location toLocation(WorldVector pt) {
|
||||||
return new Location(toWorld(pt), pt.getX(), pt.getY(), pt.getZ());
|
return new Location(toWorld(pt), pt.getX(), pt.getY(), pt.getZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Location toLocation(World world, Vector pt) {
|
||||||
|
return new Location(world, pt.getX(), pt.getY(), pt.getZ());
|
||||||
|
}
|
||||||
|
|
||||||
public static Player matchSinglePlayer(Server server, String name) {
|
public static Player matchSinglePlayer(Server server, String name) {
|
||||||
List<Player> players = server.matchPlayer(name);
|
List<Player> players = server.matchPlayer(name);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren