From 6f0a9e0abfaae700986b28b969aefe87b0629981 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 3 Aug 2016 21:31:48 +1000 Subject: [PATCH] Fix ExtInfo packet from last commit. --- Network/Player.Networking.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Network/Player.Networking.cs b/Network/Player.Networking.cs index 5b3211569..dc55ad506 100644 --- a/Network/Player.Networking.cs +++ b/Network/Player.Networking.cs @@ -72,7 +72,7 @@ namespace MCGalaxy { void HandleExtInfo(byte[] packet) { appName = GetString(packet, 1); - extensionCount = packet[67]; + extensionCount = packet[66]; // NOTE: Workaround as ClassiCube violates the CPE specification here. // If server sends version 2, the client should reply with version 1. // Except ClassiCube just doesn't reply at all if server sends version 2.