From 26656493631cc47e4bc462b484eaab375eea1934 Mon Sep 17 00:00:00 2001 From: Xabier de Zuazo Date: Sun, 5 May 2013 04:08:12 +0200 Subject: [PATCH] protocol version updated to support minecraft 1.5.2 --- lib/protocol.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/protocol.js b/lib/protocol.js index d7f4ec1..5ce735e 100644 --- a/lib/protocol.js +++ b/lib/protocol.js @@ -1290,8 +1290,8 @@ function parsePacket(buffer, isServer) { } module.exports = { - version: 60, - minecraftVersion: '1.5.1', + version: 61, + minecraftVersion: '1.5.2', sessionVersion: 13, parsePacket: parsePacket, createPacketBuffer: createPacketBuffer,