Add 1.8.4 in supported version list

+ minor fixes to ConsoleIO
This commit is contained in:
ORelio 2015-05-13 10:59:46 +02:00
parent 33b84584aa
commit 834e446a74
3 changed files with 5 additions and 4 deletions

View file

@ -17,13 +17,13 @@ namespace MinecraftClient
public static bool basicIO = false;
private static IAutoComplete autocomplete_engine;
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 buffer2 = "";
private static bool reading = false;
private static object io_lock = new object();
/// <summary>
/// Reset the IO mechanism & clear all buffers
/// Reset the IO mechanism and clear all buffers
/// </summary>
public static void Reset()