-
released this
2026-05-17 03:21:25 +09:00 | 7 commits to main since this releaseFix invisible anchor after /videoPlace and after chunk reload.
Root cause: VideoAnchorBlockEntity did not override getUpdateTag()/getUpdatePacket(), so url/facing/width/height were never carried in vanilla BE sync. The SyncAnchorPayload sent immediately after setBlock could also win the race against the chunk broadcast and get dropped because the BE did not exist yet on the client.
- getUpdateTag(HolderLookup.Provider) → toNbt()
- getUpdatePacket() → ClientboundBlockEntityDataPacket.create(this)
- Also fixes "walk far away, come back" — that path has no SyncAnchorPayload, just vanilla chunk re-sync.
Downloads