Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-20 01:40:06 +01:00
biomes is now an two-dimensional array in CharSetBlocks
- Fixes #1878
Dieser Commit ist enthalten in:
Ursprung
72f9b34f15
Commit
a1babd5ec9
@ -364,7 +364,7 @@ public class CharSetBlocks extends CharBlocks implements IChunkSet {
|
||||
minSectionPosition = layer;
|
||||
if (biomes != null) {
|
||||
BiomeType[][] tmpBiomes = new BiomeType[sectionCount][64];
|
||||
System.arraycopy(biomes, 0, tmpBiomes, 64 * diff, biomes.length);
|
||||
System.arraycopy(biomes, 0, tmpBiomes, diff, biomes.length);
|
||||
biomes = tmpBiomes;
|
||||
}
|
||||
if (light != null) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren