mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add support for Minecraft 1.9
Currently no terrain handling but anything else should work. Related: #125
This commit is contained in:
parent
578a6170ef
commit
a82c6823af
3 changed files with 137 additions and 33 deletions
|
|
@ -10,7 +10,7 @@ using MinecraftClient.Protocol.Handlers.Forge;
|
|||
namespace MinecraftClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Minecraft Console Client by ORelio (c) 2012-2014.
|
||||
/// Minecraft Console Client by ORelio & Contributors (c) 2012-2016.
|
||||
/// Allows to connect to any Minecraft server, send and receive text, automated scripts.
|
||||
/// This source code is released under the CDDL 1.0 License.
|
||||
/// </summary>
|
||||
|
|
@ -20,9 +20,9 @@ namespace MinecraftClient
|
|||
private static McTcpClient Client;
|
||||
public static string[] startupargs;
|
||||
|
||||
public const string Version = "1.8.2";
|
||||
public const string Version = "1.9.0 BETA";
|
||||
public const string MCLowestVersion = "1.4.6";
|
||||
public const string MCHighestVersion = "1.8.8";
|
||||
public const string MCHighestVersion = "1.9.0";
|
||||
|
||||
private static Thread offlinePrompt = null;
|
||||
private static bool useMcVersionOnce = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue