Merge pull request #351 from deathcap/mc17

[WIP] 1.7 protocol support in node-minecraft-protocol
This commit is contained in:
Romain Beaumont 2016-02-18 10:08:01 +01:00
commit 4806e48aff

View file

@ -253,8 +253,10 @@ function createServer(options) {
if(onlineMode == false || isException) {
client.uuid = nameToMcOfflineUUID(client.username);
}
client.write('compress', { threshold: 256 }); // Default threshold is 256
client.compressionThreshold = 256;
if (version.version >= 27) { // 14w28a (27) added whole-protocol compression (http://wiki.vg/Protocol_History#14w28a), earlier versions per-packet compressed TODO: refactor into minecraft-data
client.write('compress', { threshold: 256 }); // Default threshold is 256
client.compressionThreshold = 256;
}
client.write('success', {uuid: client.uuid, username: client.username});
client.state = states.PLAY;
loggedIn = true;