Origins (Forge)

Origins (Forge)

7M Downloads

action_on_block_use prevents interaction with block

Cynic1254 opened this issue ยท 1 comments

commented

The action_on_block_use power prevent's the block event from happening even though the action_result has been set to a value that should allow this (pass or success).

I tested the same file/datapack on origins fabric and the block event did happen there.

{
    "type": "origins:action_on_block_use",
    "block_condition": {
        "type": "origins:block",
        "block": "minecraft:bell"
    },
    "block_action": {
        "type": "origins:execute_command",
        "command": "execute as @e[nbt={Age:0},distance=..32] run data modify entity @s InLove set value 600"
    },
    "action_result": "pass"
}

breed.json

observed result: bell does not ring (and some weird things happen with the currently help item)
expected result: The bell should be ringing

commented

This was a matter of us accidentally cancelling block interaction without the context that Origins Fabric has,