411 定军阁-客户端  选择天赋加成界面,默认选中项不会重置为第一个,选择天赋确认按钮增加点击间隔
2个文件已修改
13 ■■■■ 已修改文件
Main/System/WarlordPavilion/WarlordPavilionManager.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/WarlordPavilion/WarlordPavilionSelectBonusWin.cs 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/WarlordPavilion/WarlordPavilionManager.cs
@@ -133,6 +133,8 @@
        SelectAuto = 0;
        SelectSetAttrIDList = null;
        isAutoNext = true;
        m_SelectIndex = 0;
    }
    private void PlayerDataRefresh(PlayerDataType type)
Main/System/WarlordPavilion/WarlordPavilionSelectBonusWin.cs
@@ -122,8 +122,15 @@
    {
        if (manager.SelectEffList.IsNullOrEmpty())
            return;
        manager.selectIndex = 0;
        manager.selectEffID = (int)manager.SelectEffList[0];
        if (manager.selectIndex >= manager.SelectEffList.Length)
        {
            manager.selectEffID = (int)manager.SelectEffList[0];
        }
        else
        {
            manager.selectEffID = (int)manager.SelectEffList[manager.selectIndex];
        }
    }
    private void Display()