少年修仙传客户端代码仓库
client_Hale
2019-06-25 ebca0075cd76cf4476c56b799e6f044b29a27801
382 技能刷新CD问题修复
1个文件已修改
7 ■■■■ 已修改文件
Fight/Actor/Skill/Skill.cs 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/Actor/Skill/Skill.cs
@@ -215,9 +215,12 @@
        if (skillInfo.config != null)
        {
            cd = skillInfo.config.CoolDownTime * Constants.F_GAMMA;
            if (RefreshCD != null)
            if (OwnerID == PlayerDatas.Instance.PlayerId)
            {
                RefreshCD(id, cd, cd);
                if (RefreshCD != null)
                {
                    RefreshCD(id, cd, cd);
                }
            }
        }
    }