Remove isGenerated checks

This commit is contained in:
tastybento 2024-07-16 20:54:47 -07:00
parent 18cd62dd6c
commit d9ef8dfd10

View File

@ -47,7 +47,7 @@ public class SeedWorldMakerListener implements Listener {
World seed = Bukkit.getWorld(world.getName() + "/bentobox");
int x = e.getChunk().getX();
int z = e.getChunk().getZ();
if (seed != null && !seed.getChunkAt(x, z, false).isGenerated()) {
if (seed != null) {
Util.getChunkAtAsync(seed, x, z, true);
}
});