MCBlockPlaceEvent

Link to mcblockplaceevent

The event is cancelable.

If the event is canceled, the block will not be placed

The event does not have a result.

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.event.block.MCBlockPlaceEvent;

Extending MCBlockEvent

Link to extending-mcblockevent

MCBlockPlaceEvent extends MCBlockEvent. That means all methods available in MCBlockEvent are also available in MCBlockPlaceEvent

Name: getEntity

Return Type: MCEntity

ZenScript
Copy
// MCBlockPlaceEvent.getEntity() as MCEntity

myMCBlockPlaceEvent.getEntity();

Link to getPlacedAgainst

Name: getPlacedAgainst

Return Type: MCBlockState

ZenScript
Copy
// MCBlockPlaceEvent.getPlacedAgainst() as MCBlockState

myMCBlockPlaceEvent.getPlacedAgainst();

Name: getPlacedBlock

Return Type: MCBlockState

ZenScript
Copy
// MCBlockPlaceEvent.getPlacedBlock() as MCBlockState

myMCBlockPlaceEvent.getPlacedBlock();

Link to getReplacedBlock

Name: getReplacedBlock

Return Type: MCBlockState

ZenScript
Copy
// MCBlockPlaceEvent.getReplacedBlock() as MCBlockState

myMCBlockPlaceEvent.getReplacedBlock();
名称类型可获得可设置描述
名称
entity
类型
MCEntity
可获得
true
可设置
false
描述
No Description Provided
名称
placedAgainst
类型
MCBlockState #MC方块状态
可获得
true
可设置
false
描述
No Description Provided
名称
placedBlock
类型
MCBlockState #MC方块状态
可获得
true
可设置
false
描述
No Description Provided
名称
replacedBlock
类型
MCBlockState #MC方块状态
可获得
true
可设置
false
描述
No Description Provided