Results 3 issues of weetao

**Describe the bug** I once added a tuner as M3U Tuner type and chosen a m3u file on local disk without XMLTV, and the TV channels appeared normally in front...

bug
confirmed

the code: ```c++ unsigned short font {0b0110'0'10'01100}; ``` got an error: Interpreter Error: but the code : ```c++ unsigned short font {0b01'10'01100}; //or unsigned short font = 0b0110'0'10'01100; ``` is...

我在 client/MapleCharacter.java 中做了如下修改: ```java public static boolean canCreateChar(String name) { String lname = name.toLowerCase(); for (String nameTest : BLOCKED_NAMES) { if (lname.contains(nameTest)) { return false; } } return getIdByName(name) <...