Prevent Block Use

Power Type

Prevents the usage (i.e. right-clicking) of blocks for a player. For example, this could be used to make a player not able to open a furnace or chest, not use composters, or not use a button.

Type ID: origins:prevent_block_use

Fields

Field Type Default Description
block_condition Block Condition Type If specified, only blocks that fulfills this condition is affected

Examples

{
    "type": "origins:prevent_block_use",
    "block_condition": {
      "type": "origins:block",
      "block": "minecraft:crafting_table"
    }
}

This example will prevent the player from using Crafting Tables.