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

@ -710,7 +710,7 @@ namespace MinecraftClient
public static MessageFilter str2filter(string filtername)
{
switch (filtername)
switch (filtername.ToLower())
{
case "all": return MessageFilter.AllText;
case "messages": return MessageFilter.AllMessages;