少年修仙传客户端代码仓库
client_linchunjie
2018-09-14 66c1055795fbcb75611b1649b5d9a47348d045ff
3588【前端】【主干】传给猫耳的验证信息需分割出游戏内的特殊标志
1个文件已修改
2 ■■■■■ 已修改文件
Utility/LanguageVerify.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Utility/LanguageVerify.cs
@@ -271,6 +271,7 @@
        AddMathcs(WordAnalysis.Size_End_Regex.Matches(content));
        AddMathcs(WordAnalysis.Space_Regex.Matches(content));
        AddMathcs(ChatCtrl.KillRegex.Matches(content));
        AddMathcs(ChatCenter.s_VoiceRegex.Matches(content));
        matchs.Sort((x, y) =>
        {
            return x.index.CompareTo(y.index);
@@ -287,6 +288,7 @@
        content = WordAnalysis.Size_End_Regex.Replace(content, TransferIdentify);
        content = WordAnalysis.Space_Regex.Replace(content, TransferIdentify);
        content = ChatCtrl.KillRegex.Replace(content, TransferIdentify);
        content = ChatCenter.s_VoiceRegex.Replace(content, TransferIdentify);
        return content;
    }