MCRightClickBlockEvent

Link to mcrightclickblockevent

This event is fired on both sides whenever the player right clicks while targeting a block. This event controls which of Item.onItemUseFirst, Block.onBlockActivated, and Item.onItemUse will be called.

The event is cancelable.

If the event is canceled, will cause none of the above three to be called.

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.entity.player.interact.MCRightClickBlockEvent;

Extending MCPlayerInteractEvent

Link to extending-mcplayerinteractevent

MCRightClickBlockEvent extends MCPlayerInteractEvent. That means all methods available in MCPlayerInteractEvent are also available in MCRightClickBlockEvent

Name: getFace

The face of the block that was clicked Unlike in MCPlayerInteractEvent this is known not to be null

Return Type: Direction

ZenScript
Copy
// MCRightClickBlockEvent.getFace() as Direction

myMCRightClickBlockEvent.getFace();
名称类型可获得可设置描述
名称
face
类型
Direction
可获得
true
可设置
false
描述
The face of the block that was clicked
Unlike in MCPlayerInteractEvent this is known not to be null