少年修仙传客户端代码仓库
client_Hale
2018-12-06 d740805316497872960df5f032958eeae8c67209
382 助战普攻伤害丢失问题修复
1个文件已修改
15 ■■■■■ 已修改文件
Fight/GameActor/GActorPlayerBase.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GActorPlayerBase.cs
@@ -2240,7 +2240,20 @@
    {
        if (index >= 0 && index < JobSetup.ComAtkIdList.Length)
        {
            return JobSetup.ComAtkIdList[index];
            if (this is GA_NpcFightZZPlayer)
            {
                switch (JobSetup.Job)
                {
                    case 1:
                        return 12500 + index;
                    case 2:
                        return 12600 + index;
                }
            }
            else
            {
                return JobSetup.ComAtkIdList[index];
            }
        }
        return -1;
    }