public abstract class AbstractLoggingExtent extends AbstractDelegateExtent
Modifier | Constructor and Description |
---|---|
protected |
AbstractLoggingExtent(Extent extent)
Create a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected void |
onBlockChange(Vector position,
BaseBlock newBlock)
Called when a block is being changed.
|
boolean |
setBlock(Vector position,
BaseBlock block)
Change the block at the given location to the given block.
|
commit, commitBefore, createEntity, getBiome, getBlock, getEntities, getEntities, getExtent, getLazyBlock, getMaximumPoint, getMinimumPoint, setBiome
protected AbstractLoggingExtent(Extent extent)
extent
- the extentprotected void onBlockChange(Vector position, BaseBlock newBlock)
position
- the positionnewBlock
- the new block to replace the old onepublic final boolean setBlock(Vector position, BaseBlock block) throws WorldEditException
OutputExtent
BaseBlock
to the world, so future changes to the
BaseBlock
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
position
- position of the blockblock
- block to setWorldEditException
- thrown on an error