feat: Add support for 1.19.1 (#1887)

This commit is contained in:
Alexander Brandes 2022-07-28 10:26:43 +02:00 committed by GitHub
parent e10774598e
commit 50ee45fedd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,8 +183,8 @@ public final class PaperweightAdapter implements BukkitImplAdapter<net.minecraft
CraftServer.class.cast(Bukkit.getServer());
int dataVersion = CraftMagicNumbers.INSTANCE.getDataVersion();
if (dataVersion != 3105) {
throw new UnsupportedClassVersionError("Not 1.19!");
if (dataVersion != 3105 && dataVersion != 3117) {
throw new UnsupportedClassVersionError("Not 1.19 or 1.19.1!");
}
worldsField = CraftServer.class.getDeclaredField("worlds");