Fix error with anti xray in 1.8

This commit is contained in:
Fabrizio La Rosa 2020-07-09 18:05:30 +02:00
parent 796d3ce6b0
commit f98719d457

View File

@ -129,9 +129,11 @@ public class BiomeManager {
}
}
if(ServerVersion.isServerVersionBelow(ASYNC_OBFUSCATOR_VERSION)) {
for(Chunk chunk : syncChunks){
updateBiomePacket(island, chunk);
}
Bukkit.getScheduler().runTask(plugin, () -> {
for(Chunk chunk : syncChunks){
updateBiomePacket(island, chunk);
}
});
}
});
}, (island1 -> {