diff --git a/HISTORY.md b/HISTORY.md index 4eac540..d6f0347 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,11 @@ +## 3.2.0 + +* Fix empty chunks on proxy spawn (#89) +* Send skin data to server (#88) +* Support xbox title + live.com auth (#86) +* Protocol updates and fixes +* Fix third party servers, optional client encryption (#83) + ## 3.1.0 * Add support for 1.16 * New docs and examples diff --git a/data/1.16.220/protocol.json b/data/1.16.220/protocol.json index ed967de..4d0de82 100644 --- a/data/1.16.220/protocol.json +++ b/data/1.16.220/protocol.json @@ -5110,7 +5110,22 @@ [ { "name": "action_id", - "type": "zigzag32" + "type": [ + "mapper", + { + "type": "zigzag32", + "mappings": { + "0": "none", + "1": "swing_arm", + "2": "unknown", + "3": "wake_up", + "4": "critical_hit", + "5": "magic_critical_hit", + "6": "row_right", + "7": "row_left" + } + } + ] }, { "name": "runtime_entity_id", diff --git a/package.json b/package.json index dc2463b..4f6280b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bedrock-protocol", - "version": "3.1.0", + "version": "3.2.0", "description": "Minecraft Bedrock Edition protocol library", "main": "index.js", "scripts": {