Support for unicode chars in JSON strings: \u0123

+ Small change in str2filter (case insensitive)
+ Commented debug instruction for RAW data
This commit is contained in:
ORelio 2013-08-08 10:51:59 +02:00
parent df4a9cd7b7
commit 551c152c7c
3 changed files with 30 additions and 4 deletions

View file

@ -182,7 +182,7 @@ namespace MinecraftClient
string message = readNextString();
if (protocolversion >= 72)
{
//printstring("§8" + message, false); //Debug
//printstring("§8" + message, false); //Debug : Show the RAW JSON data
message = ChatParser.ParseText(message);
printstring(message, false);
}