mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add 1.8.4 in supported version list
+ minor fixes to ConsoleIO
This commit is contained in:
parent
33b84584aa
commit
834e446a74
3 changed files with 5 additions and 4 deletions
|
|
@ -17,13 +17,13 @@ namespace MinecraftClient
|
||||||
public static bool basicIO = false;
|
public static bool basicIO = false;
|
||||||
private static IAutoComplete autocomplete_engine;
|
private static IAutoComplete autocomplete_engine;
|
||||||
private static LinkedList<string> previous = new LinkedList<string>();
|
private static LinkedList<string> previous = new LinkedList<string>();
|
||||||
|
private static readonly object io_lock = new object();
|
||||||
|
private static bool reading = false;
|
||||||
private static string buffer = "";
|
private static string buffer = "";
|
||||||
private static string buffer2 = "";
|
private static string buffer2 = "";
|
||||||
private static bool reading = false;
|
|
||||||
private static object io_lock = new object();
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reset the IO mechanism & clear all buffers
|
/// Reset the IO mechanism and clear all buffers
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
||||||
public static void Reset()
|
public static void Reset()
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ namespace MinecraftClient
|
||||||
|
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Console Client for MC 1.4.6 to 1.8.3 - v" + Version + " - By ORelio & Contributors");
|
Console.WriteLine("Console Client for MC 1.4.6 to 1.8.4 - v" + Version + " - By ORelio & Contributors");
|
||||||
|
|
||||||
//Basic Input/Output ?
|
//Basic Input/Output ?
|
||||||
if (args.Length >= 1 && args[args.Length - 1] == "BasicIO")
|
if (args.Length >= 1 && args[args.Length - 1] == "BasicIO")
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,7 @@ namespace MinecraftClient.Protocol
|
||||||
case "1.8.1":
|
case "1.8.1":
|
||||||
case "1.8.2":
|
case "1.8.2":
|
||||||
case "1.8.3":
|
case "1.8.3":
|
||||||
|
case "1.8.4":
|
||||||
return 47;
|
return 47;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue