mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-21 18:25:12 +01:00
Remove isGenerated checks
This commit is contained in:
parent
18cd62dd6c
commit
d9ef8dfd10
@ -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);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user