1
0
mirror of https://github.com/Mojang/bedrock-protocol-docs.git synced 2025-11-06 14:45:14 +00:00
Files
bedrock-protocol-docs/json/TakeItemActorPacket.json

57 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "1184763514",
"x-format-version": "MISSING VERSION",
"x-minecraft-version": "1.21.120",
"x-protocol-version": 859,
"definitions": {
"4084200889": {
"title": "TakeItemActorPacketPayload",
"type": "object",
"properties": {
"Actor Runtime ID": {
"$ref": "#/definitions/3541243607",
"x-ordinal-index": 1
},
"Item Runtime ID": {
"$ref": "#/definitions/3541243607",
"x-ordinal-index": 0
}
},
"required": [
"Actor Runtime ID",
"Item Runtime ID"
]
},
"3541243607": {
"title": "ActorRuntimeID",
"type": "object",
"properties": {
"Actor Runtime ID": {
"type": "integer",
"x-underlying-type": "uint64",
"x-serialization-options": [
"Compression"
],
"x-ordinal-index": 0
}
},
"required": [
"Actor Runtime ID"
]
}
},
"title": "TakeItemActorPacket",
"description": "A packet sent to the server when deal with picking up an item off the ground in the world.",
"type": "object",
"properties": {
"mPayload": {
"$ref": "#/definitions/4084200889",
"x-ordinal-index": 0
}
},
"$metaProperties": {
"[cereal:packet]": 17,
"[cereal:packet_details]": "From this the item and count is turned into an item and the transaction is handled afterwards."
}
}