mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-14 19:04:59 -05:00
Updated protocol version to support 1.6.4
This commit is contained in:
parent
8b7abe27e7
commit
5e75cdf75d
3 changed files with 8 additions and 4 deletions
|
@ -4,7 +4,7 @@ Parse and serialize minecraft packets, plus authentication and encryption.
|
|||
|
||||
## Features
|
||||
|
||||
* Supports Minecraft version 1.6.2
|
||||
* Supports Minecraft version 1.6.4
|
||||
* Parses all packets and emits events with packet fields as JavaScript
|
||||
objects.
|
||||
* Send a packet by supplying fields as a JavaScript object.
|
||||
|
@ -293,6 +293,10 @@ NODE_DEBUG="minecraft-protocol" node [...]
|
|||
|
||||
## History
|
||||
|
||||
### 0.11.6
|
||||
|
||||
* Updated protocol version to support 1.6.4 (thanks [Matt Bell](https://github.com/mappum))
|
||||
|
||||
### 0.11.5
|
||||
|
||||
* Fix handling of some conditional fields (thanks [Florian Wesch](https://github.com/dividuum))
|
||||
|
|
|
@ -1469,8 +1469,8 @@ function parsePacket(buffer, isServer) {
|
|||
}
|
||||
|
||||
module.exports = {
|
||||
version: 74,
|
||||
minecraftVersion: '1.6.2',
|
||||
version: 78,
|
||||
minecraftVersion: '1.6.4',
|
||||
sessionVersion: 13,
|
||||
parsePacket: parsePacket,
|
||||
createPacketBuffer: createPacketBuffer,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "minecraft-protocol",
|
||||
"version": "0.11.5",
|
||||
"version": "0.11.6",
|
||||
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in a new issue