mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-22 18:26:08 +01:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e5dc8eda4e
@ -28,7 +28,7 @@ public class BiomeManager {
|
||||
int radius = (int) Math.ceil(island.getRadius());
|
||||
|
||||
for (int x = location.getBlockX() - radius; x < location.getBlockX() + radius; x++) {
|
||||
for (int z = location.getBlockX() - radius; z < location.getBlockX() + radius; z++) {
|
||||
for (int z = location.getBlockZ() - radius; z < location.getBlockZ() + radius; z++) {
|
||||
location.getWorld().setBiome(x, z, biome);
|
||||
Chunk chunk = location.getWorld().getChunkAt(x >> 4, z >> 4);
|
||||
if (!chunks.contains(chunk))
|
||||
|
Loading…
Reference in New Issue
Block a user