少年修仙传客户端代码仓库
hch
2025-03-27 664e7b2e0608fa9a3f93ea408e01db37ef461f6e
LogicProject/System/ArenaActivity/ArenaRankCell.cs
@@ -130,13 +130,13 @@
            int fightpower = ArenaModel.Instance.GetLevel(level, 2); //fight
            if(data.id < 10000)
            {
                rankWhat.text = UIHelper.ReplaceLargeNum(fightpower);
                rankWhat.text = fightpower.ToString();
            }
            else
            {
                //rankWhat.text = data.cmpValue2.ToString();
                ulong fight = data.cmpValue2;
                fight  = fight * Constants.ExpPointValue + data.cmpValue3;
                fight  = fight * 100000000 + data.cmpValue3;
                rankWhat.text  = fight.ToString();
            }