From 67eae05196d53b194a09d272d872288098f450e5 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期一, 26 一月 2026 21:40:53 +0800
Subject: [PATCH] 282 查看他人-客户端  如果选了无坐骑,被别人查看时,默认显示id为1的坐骑

---
 Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs b/Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs
index 7af6bad..109e112 100644
--- a/Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs
+++ b/Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs
@@ -169,9 +169,10 @@
         imgHorseBG.SetActive(horseData != null);
         if (horseData != null)
         {
-            txtHorseLV.text = Language.Get("Horse8", horseData == null ? 0 : horseData.ClassLV, horseData == null ? 0 : horseData.LV);
-            horseController.Create(horseSkinID, 0, 0.6f);
+            txtHorseLV.text = Language.Get("Horse8", horseData.ClassLV, horseData.LV);
+            horseController.Create(horseSkinID <= 0 ? 1 : horseSkinID, scale: 0.6f);
         }
+
     }
 
     private void DisplayCard(List<OtherPlayerDetailManager.RolePlusData.HeroData> heros)

--
Gitblit v1.8.0