Add support for 1.12.2

While there are protocol changes to the keep alive packet, the way MCC implements it should mean that the changes do not affect us.
This commit is contained in:
Pokechu22 2017-09-13 11:50:03 -07:00 committed by ORelio
parent 5edb8f9024
commit b1a66791a1
2 changed files with 5 additions and 3 deletions

View file

@ -20,9 +20,9 @@ namespace MinecraftClient
private static McTcpClient Client;
public static string[] startupargs;
public const string Version = "1.12.1 DEV";
public const string Version = "1.12.2 DEV";
public const string MCLowestVersion = "1.4.6";
public const string MCHighestVersion = "1.12.1";
public const string MCHighestVersion = "1.12.2";
private static Thread offlinePrompt = null;
private static bool useMcVersionOnce = false;