少年修仙传客户端代码仓库
client_linchunjie
2019-01-29 0eb72b1c334da5b69aab25a09c08f7b8db261897
3335 防止富文本寻路过程中报错
1个文件已修改
6 ■■■■ 已修改文件
System/Message/RichMoveEvent.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Message/RichMoveEvent.cs
@@ -206,7 +206,7 @@
    {
        GA_Hero _hero = PlayerDatas.Instance.hero;
        if (_hero == null)
        if (_hero == null || _hero.SkillMgr == null)
        {
            yield break;
        }
@@ -215,6 +215,10 @@
               _hero.SkillMgr.CurCastSkill.SkillCompelete == false)
        {
            yield return null;
            if (_hero == null || _hero.SkillMgr == null)
            {
                yield break;
            }
        }
        MapTransferUtility.Instance.MoveToNPC(id);