Batch Block Updates
When manipulating a lot of blocks, you should use BatchBlockUpdate. BatchBlockUpdate updates all the blocks in chunk palettes directly and asynchronously without sending block updates and then resends the entire chunk update packet instead
Overview
BatchBlockUpdate has:
updates
which is map ofLocation
toBlock
, avoid settings this directly and use the methods below insteadsetBlock(location, block)
method to set a block in the updatesetBlock(x, y z, block)
as an alternative to method abovefill(location, location, block)
method to fill all blocks between the two provided locationsfill(x, y, z, x, y, z, block)
as an alternative to method above
Usage
You can update blocks in a batch by calling world.batchBlockUpdate
method:
kotlin
world.batchBlockUpdate {
fill(spawnStart, spawnEnd, Blocks.GRASS_BLOCK.withBlockStates("snowy" to "true")) // fill the ground with snowy grass!
// let's build a snowman!!
setBlock(snowmanLocation, Blocks.SNOW_BLOCK)
setBlock(snowmanLocation.add(0, 2, 0), Blocks.SNOW_BLOCK)
setBlock(snowmanLocation.add(0, 3, 0), Blocks.CARVED_PUMPKIN)
}