I've created a custom advancement but when I use a trigger block with for ex: minecraft:water It will activate even If It Isn't right
advancements in test.zip
Attachments
Comments 5
Your conditions for enter_block
are set up incorrectly. The "items" list needs to be removed with "block" appearing at the root of the "conditions" object. Fixed advancement:
{
"display": {
"icon": {
"item": "minecraft:water_bucket"
},
"title": {
"translate": "test"
},
"description": {
"translate": "Testing the error"
}
},
"parent": "custom:test/root",
"criteria": {
"get_stone": {
"trigger": "minecraft:enter_block",
"conditions": {
"block": "minecraft:water"
}
}
}
}
Can you attach your advancement here?