← Back to Index
ClientCacheMissResponsePacket (136)
Only active in a real client-server scenario. This packet is just a list of <blobId, blob> pairs sent from server to client.
Any missing blob should just be thrown into one of these packet ASAP and sent. This is actually how chunk data gets to the client the first time.
| Field Name |
Type |
Field Index |
Description |
| Missing Blobs (Required) |
array<MissingBlobData> |
0 |
List of <blobId, blob> pairs |
MissingBlobData (Array Item)
| Field Name |
Type |
Field Index |
Description |
| Blob Id (Required) |
uint64 |
0 |
|
| Blob Data (Required) |
string |
1 |
Subchunk data (see https://gist.github.com/Tomcc/a96af509e275b1af483b25c543cfbf37) plus biome data |
|