feat(redstone-link): wireless redstone addon; track family-goals
Adds redstone-link-addon: a transmitter/receiver pair bound by channel name, giving redstone that runs anywhere without wire, support blocks or line of sight. Bedrock custom blocks can read redstone power but cannot emit it, so a live receiver is swapped to a vanilla redstone_block and back; receiver positions persist in a world dynamic property, with a reconcile pass at boot to repair anything a crash left inconsistent. Deployed and proven end-to-end on lobby (Hub World). Also commits family-goals-addon, which was running on jamie -- mounted in docker-compose.yml and pinned in the world -- while existing in no commit on any branch. It was unbacked-up production code. That omission was load-bearing for deploys: deploy.yml checks out docker-compose.yml from origin/main, so a deploy would have replaced the host compose with a version lacking the family-goals mount and silently killed the addon. Both new directories are added to the workflow's PATHS and push-trigger list, so nothing is mounted that CI does not deliver. The mount set in this file now matches the live host exactly. Note for a follow-up: dynamite-, hemp-, naturalist-lite-, smart-crafting-, tow-boat- and trees-features-addon are mounted but absent from PATHS, so CI never refreshes them. 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
b28e4d0610
commit
8ded29cbcc
@@ -38,6 +38,8 @@ services:
|
||||
- ./dynamite-addon/dynamite_RP:/data/resource_packs/dynamite_RP
|
||||
- ./tow-boat-addon/tow_boat_BP:/data/behavior_packs/tow_boat_BP
|
||||
- ./tow-boat-addon/tow_boat_RP:/data/resource_packs/tow_boat_RP
|
||||
- ./redstone-link-addon/redstone_link_BP:/data/behavior_packs/redstone_link_BP
|
||||
- ./redstone-link-addon/redstone_link_RP:/data/resource_packs/redstone_link_RP
|
||||
restart: unless-stopped
|
||||
# Cap each Bedrock service so a runaway/hung server can't OOM-kill its
|
||||
# neighbours. Host has 8 GB; 4 × 1500 MB leaves headroom for the OS and
|
||||
@@ -81,6 +83,7 @@ services:
|
||||
- ./trees-features-addon/trees_features_RP:/data/resource_packs/trees_features_RP
|
||||
- ./hemp-addon/hemp_BP:/data/behavior_packs/hemp_BP
|
||||
- ./hemp-addon/hemp_RP:/data/resource_packs/hemp_RP
|
||||
- ./family-goals-addon/family_goals_BP:/data/behavior_packs/family_goals_BP
|
||||
restart: unless-stopped
|
||||
mem_limit: 1500m
|
||||
memswap_limit: 2500m
|
||||
|
||||
Reference in New Issue
Block a user