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

52 lines
1.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "3441043906",
"x-format-version": "MISSING VERSION",
"x-minecraft-version": "1.21.120",
"x-protocol-version": 859,
"definitions": {
"2079273573": {
"title": "RemoveActorPacketPayload",
"type": "object",
"properties": {
"Target Actor ID": {
"$ref": "#/definitions/1221684255",
"x-ordinal-index": 0
}
},
"required": [
"Target Actor ID"
]
},
"1221684255": {
"title": "ActorUniqueID",
"type": "object",
"properties": {
"Actor Unique ID": {
"type": "integer",
"x-underlying-type": "int64",
"x-serialization-options": [
"Compression"
],
"x-ordinal-index": 0
}
},
"required": [
"Actor Unique ID"
]
}
},
"title": "RemoveActorPacket",
"description": "Occasionally, during the server player tick some time is taken to remove nearby actors from the world.",
"type": "object",
"properties": {
"mPayload": {
"$ref": "#/definitions/2079273573",
"x-ordinal-index": 0
}
},
"$metaProperties": {
"[cereal:packet]": 14,
"[cereal:packet_details]": "This is sent to the client to confirm which entity is being removed. This is done by sending an ActorUniqueID"
}
}