少年修仙传客户端代码仓库
339726288@qq.com
2018-08-09 65d5cf5ec5402ce4236afb0e24c5caddfbb15534
fixed #1918 【前端】NPC境界与飘血, 当被攻击方境界配置为0时不显示压制飘血
1个文件已修改
2 ■■■ 已修改文件
Fight/GameActor/GAStaticDefine.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GAStaticDefine.cs
@@ -361,7 +361,7 @@
                else if (target is GA_NpcFightNorm)
                {
                    _casterRealm = PlayerDatas.Instance.baseData.realmLevel;
                    _targetRealm = (int)target.ActorInfo.realm;
                    _targetRealm = (int)target.ActorInfo.realm == 0 ? 99999999 : (int)target.ActorInfo.realm;
                }
            }
            else if (target is GA_Hero)