Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Dieser Commit ist enthalten in:
Ursprung
7cf7c0712f
Commit
dfb0c5671b
@ -178,9 +178,11 @@ public class BukkitChunk_All extends IntFaweChunk<Chunk, BukkitQueue_All> {
|
|||||||
int xx = bx + x;
|
int xx = bx + x;
|
||||||
int biome = biomes[index] & 0xFF;
|
int biome = biomes[index] & 0xFF;
|
||||||
if (biome == 0) continue;
|
if (biome == 0) continue;
|
||||||
if (biome == -1) biome = 0;
|
if (biome == 255) biome = 0;
|
||||||
Biome bukkitBiome = adapter.getBiome(biome);
|
Biome bukkitBiome = adapter.getBiome(biome);
|
||||||
world.setBiome(xx, zz, bukkitBiome);
|
if (bukkitBiome != null) {
|
||||||
|
world.setBiome(xx, zz, bukkitBiome);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren