Files
minecraft-aiworld/smart-crafting-addon/smart_crafting_BP/blocks/smart_crafting_table.json
SysAdmin e6148a2949
All checks were successful
Deploy Addons / deploy (push) Successful in 13s
fix(addons): correct recipe unlock shape and block format_version
Follow-up to 4324882. The { "context": "always_unlocked" } form triggered
"malformed unlocking context" on 1.26-series Bedrock (AlwaysUnlocked pascal
form fared no better). Empty-array form is the universally accepted "recipe
always known" shape. This unblocks mc-lobby which was crashing on boot.

Also reverts block format_version on mailbox.json + smart_crafting_table.json
to 1.21.0 — every other working block in the repo uses that, so the prior
1.21.60 choice was unnecessary.

- 19 dragon + portal recipes (spark_pet_BP, lobby_transfer_BP): unlock -> []
- 7 other recipes touching unlock { context: ... }: same
- 2 block files: format_version 1.21.60 -> 1.21.0

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-23 23:22:41 +01:00

28 lines
649 B
JSON

{
"format_version": "1.21.0",
"minecraft:block": {
"description": {
"identifier": "silverlabs:smart_crafting_table",
"menu_category": {
"category": "items",
"group": "itemGroup.name.crafting"
}
},
"components": {
"minecraft:destructible_by_mining": {
"seconds_to_destroy": 2.5
},
"minecraft:destructible_by_explosion": {
"explosion_resistance": 20.0
},
"minecraft:map_color": "#D4AF37",
"minecraft:material_instances": {
"*": {
"texture": "smart_crafting_table",
"render_method": "opaque"
}
}
}
}
}