diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/blocks/CharSetBlocks.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/blocks/CharSetBlocks.java index 3cbb5ccdf..291a3cf57 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/blocks/CharSetBlocks.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/blocks/CharSetBlocks.java @@ -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) {