3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 04:51:22 +02:00
Dieser Commit ist enthalten in:
Jesse Boyd 2018-10-14 03:42:23 +11:00
Ursprung 7cf7c0712f
Commit dfb0c5671b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F

Datei anzeigen

@ -178,9 +178,11 @@ public class BukkitChunk_All extends IntFaweChunk<Chunk, BukkitQueue_All> {
int xx = bx + x;
int biome = biomes[index] & 0xFF;
if (biome == 0) continue;
if (biome == -1) biome = 0;
if (biome == 255) biome = 0;
Biome bukkitBiome = adapter.getBiome(biome);
world.setBiome(xx, zz, bukkitBiome);
if (bukkitBiome != null) {
world.setBiome(xx, zz, bukkitBiome);
}
}
}
}