mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
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:
parent
df4a9cd7b7
commit
551c152c7c
3 changed files with 30 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue