From f4a702e212d1853735f8dae399da69d23bfa510e Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期四, 26 三月 2026 18:16:16 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into h5version

---
 Main/System/BillboardRank/PlayerTop3Cell.cs |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/Main/System/BillboardRank/PlayerTop3Cell.cs b/Main/System/BillboardRank/PlayerTop3Cell.cs
index f9d277e..0b7a7fb 100644
--- a/Main/System/BillboardRank/PlayerTop3Cell.cs
+++ b/Main/System/BillboardRank/PlayerTop3Cell.cs
@@ -27,7 +27,22 @@
         }
         officialTitleCell.SetActive(true);
         //rankValueText.text = string.Format(valueFormat, UIHelper.ReplaceLargeNum(rankData.cmpValue2 + rankData.cmpValue * Constants.ExpPointValue));
-        rankValueText.text = RankModel.Instance.GetCmpValueStr(rankType, rankData.cmpValue);
+        if (rankType == QunyingManager.rankType)
+        {
+            //鍖烘湇
+            if (GeneralDefine.IsRobot((int)rankData.id))
+            {
+                rankValueText.text = Language.Get("Qunying15");
+            }
+            else
+            {
+                rankValueText.text = ServerListCenter.Instance.GetServerName(UIHelper.GetServerIDByAccount(rankData.name2));
+            }
+        }
+        else
+        {
+            rankValueText.text = RankModel.Instance.GetCmpValueStr(rankType, rankData.cmpValue);
+        }
         nameText.text = rankData.name1;
         officialTitleCell.InitUI((int)rankData.value1, (int)rankData.value2);
         model.Create(HorseManager.Instance.GetOtherPlayerHorseSkinID((int)rankData.value6), (int)rankData.value5, rank == 1 ? 1f : 0.8f).Forget();

--
Gitblit v1.8.0