public class ChunkLoadingExtent extends AbstractDelegateExtent
Constructor and Description |
---|
ChunkLoadingExtent(Extent extent,
World world)
Create a new instance with chunk loading enabled.
|
ChunkLoadingExtent(Extent extent,
World world,
boolean enabled)
Create a new instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
setBlock(BlockVector3 location,
BlockStateHolder block)
Change the block at the given location to the given block.
|
commit, commitBefore, createEntity, getBiome, getBlock, getEntities, getEntities, getExtent, getFullBlock, getMaximumPoint, getMinimumPoint, setBiome
public ChunkLoadingExtent(Extent extent, World world, boolean enabled)
extent
- the extentworld
- the worldenabled
- true to enablepublic boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException
OutputExtent
BlockStateHolder
to the world, so future changes to the
BlockStateHolder
do not affect the world until this method is called again.
The return value of this method indicates whether the change was probably successful. It may not be successful if, for example, the location is out of the bounds of the extent. It may be unsuccessful if the block passed is the same as the one in the world. However, the return value is only an estimation and it may be incorrect, but it could be used to count, for example, the approximate number of changes.
setBlock
in interface OutputExtent
setBlock
in class AbstractDelegateExtent
location
- position of the blockblock
- block to setWorldEditException
- thrown on an error