fix(lobby): sync BP dependency to bumped RP version; name portal_field
Deploy Addons / deploy (push) Failing after 0s
Deploy Addons / deploy (push) Failing after 0s
Two issues an addon-wide audit turned up. The portal-texture commit bumped lobby_transfer_RP to 1.0.1 but left the behavior pack's dependency on it pinned at 1.0.0. A dependency whose version does not match the referenced pack's header is exactly the kind of mismatch that makes Bedrock drop a pack, so this was a regression waiting to bite. portal_field carries a menu_category, so it appears in the creative inventory, but had no lang entry -- it showed as the raw key tile.silverlabs:portal_field .name. The other four portal blocks were already named. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015Gf1kZypRDfPL1YiWUS1LC
This commit is contained in:
co-authored by
Claude Opus 5
parent
cde6c46bf2
commit
efac50aba7
@@ -4,20 +4,36 @@
|
||||
"name": "Lobby Portal Transfer",
|
||||
"description": "Auto-transfers players when they step into portal areas",
|
||||
"uuid": "a1b2c3d4-1111-2222-3333-abcdef123456",
|
||||
"version": [1, 1, 0],
|
||||
"min_engine_version": [1, 21, 0]
|
||||
"version": [
|
||||
1,
|
||||
1,
|
||||
0
|
||||
],
|
||||
"min_engine_version": [
|
||||
1,
|
||||
21,
|
||||
0
|
||||
]
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "data",
|
||||
"uuid": "a1b2c3d4-7777-8888-9999-abcdef345678",
|
||||
"version": [1, 1, 0]
|
||||
"version": [
|
||||
1,
|
||||
1,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "script",
|
||||
"language": "javascript",
|
||||
"uuid": "a1b2c3d4-4444-5555-6666-abcdef789012",
|
||||
"version": [1, 1, 0],
|
||||
"version": [
|
||||
1,
|
||||
1,
|
||||
0
|
||||
],
|
||||
"entry": "scripts/main.js"
|
||||
}
|
||||
],
|
||||
@@ -32,7 +48,11 @@
|
||||
},
|
||||
{
|
||||
"uuid": "b2c3d4e5-1111-2222-3333-fedcba654321",
|
||||
"version": [1, 0, 0]
|
||||
"version": [
|
||||
1,
|
||||
0,
|
||||
1
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -2,3 +2,4 @@ tile.silverlabs:portal_frame.name=Portal Frame
|
||||
tile.silverlabs:portal_jamie.name=Jamie's World Portal
|
||||
tile.silverlabs:portal_lyla.name=Lyla's World Portal
|
||||
tile.silverlabs:portal_mya.name=Mya's World Portal
|
||||
tile.silverlabs:portal_field.name=Portal Field
|
||||
|
||||
Reference in New Issue
Block a user