hch
9 天以前 8ac6c905b1d86257436517e9fe54ab47020af5e8
0312 优化红颜定军阁解锁判断
1个文件已修改
3 ■■■■ 已修改文件
Main/System/BeautyMM/BeautyMMShowWin.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/BeautyMM/BeautyMMShowWin.cs
@@ -292,9 +292,10 @@
                //定军阁
                WarlordPavilionManager.Instance.TryGetHistoryMaxFinishProgress(out int layerNum, out int levelNum);
                FBDJGLevelConfig.TryGetNextLevel(layerNum, levelNum, out int nextLayerNum, out int nextLevelNum);
                var showLayer = layerNum != nextLayerNum ? layerNum : layerNum - 1;
                colorType = nextLayerNum > beauty.UnlockValue ? TextColType.Green : TextColType.Red;
                return Language.Get("BeautyMMUnLockTip8", beauty.UnlockValue) +
                UIHelper.AppendColor(colorType, Language.Get("HeroFates11", layerNum, beauty.UnlockValue));
                UIHelper.AppendColor(colorType, Language.Get("HeroFates11", showLayer, beauty.UnlockValue));
        }
        return "";
    }