bukkit
Wersje
Szukaj…
Pobieranie wersji w środowisku wykonawczym
@Override
public void onEnable() {
String version = Bukkit.getBukkitVersion(); //The string version of this bukkit server
}
Dostęp do NMS w różnych wersjach implementacyjnych
// gets the Class objects from the net.mminecraft.server package with the given name
public Class<?> getNmsClass(String name) throws ClassNotFoundException {
// explode the Server interface implementation's package name into its components
String[] packageArray = Bukkit.getServer().getClass().getPackage().getName().split("\\.");
// pick out the component representing the package version if it's present
String packageVersion = array.length == 4 ? array[3] + "." : "";
// construct the qualified class name from the obtained package version
String qualName = "net.minecraft.server." + packageVersion + name;
// simple call to get the Class object
return Class.forName(qualName);
}
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow