fix(addons): correct recipe unlock shape and block format_version
All checks were successful
Deploy Addons / deploy (push) Successful in 13s
All checks were successful
Deploy Addons / deploy (push) Successful in 13s
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>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"format_version": "1.21.60",
|
||||
"format_version": "1.21.0",
|
||||
"minecraft:block": {
|
||||
"description": {
|
||||
"identifier": "silverlabs:smart_crafting_table",
|
||||
|
||||
@@ -4,12 +4,20 @@
|
||||
"description": {
|
||||
"identifier": "silverlabs:smart_crafting_table_recipe"
|
||||
},
|
||||
"tags": ["crafting_table"],
|
||||
"unlock": { "context": "AlwaysUnlocked" },
|
||||
"tags": [
|
||||
"crafting_table"
|
||||
],
|
||||
"unlock": [],
|
||||
"ingredients": [
|
||||
{ "item": "minecraft:crafting_table" },
|
||||
{ "item": "minecraft:gold_ingot" },
|
||||
{ "item": "minecraft:redstone" }
|
||||
{
|
||||
"item": "minecraft:crafting_table"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:gold_ingot"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:redstone"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "silverlabs:smart_crafting_table",
|
||||
|
||||
Reference in New Issue
Block a user