Set legacy ID when adapter is loaded to enable reading/writing anvil

This commit is contained in:
dordsor21 2021-09-22 16:15:18 +01:00
parent 663d0139b7
commit 40b024fbba
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -313,9 +313,12 @@ public class WorldEditPlugin extends JavaPlugin {
// Biomes are stored globally in the server. Registries are not kept per-world in Minecraft.
// The WorldServer get-registries method simply delegates to the MinecraftServer method.
for (final NamespacedKey biome : ((BukkitImplAdapter<?>) adapter.value().get()).getRegisteredBiomes()) {
if (BiomeType.REGISTRY.get(biome.toString()) == null) { // only register once
BiomeType.REGISTRY.register(biome.toString(), new BiomeType(biome.toString()));
BiomeType biomeType;
if ((biomeType = BiomeType.REGISTRY.get(biome.toString())) == null) { // only register once
biomeType = new BiomeType(biome.toString());
BiomeType.REGISTRY.register(biome.toString(), biomeType);
}
biomeType.setLegacyId(adapter.value().get().getInternalBiomeId(biomeType));
}
} else {
if (!expectFail) {