From be184180d02f72b5a42b3ec472204d2f984289ee Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期五, 17 四月 2026 18:28:38 +0800
Subject: [PATCH] 602 坐骑优化-客户端 获得坐骑的解锁属性数值显示装备坐骑后的属性

---
 Main/System/Horse/GetHorseWin.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Main/System/Horse/GetHorseWin.cs b/Main/System/Horse/GetHorseWin.cs
index 2ee5b2f..9a9ca62 100644
--- a/Main/System/Horse/GetHorseWin.cs
+++ b/Main/System/Horse/GetHorseWin.cs
@@ -29,8 +29,8 @@
         nameTxt.text = horseSkinConfig.Name;
         iconImg.overrideSprite = UILoader.LoadSprite("HorseIcon", horseSkinConfig.Icon);
         iconImg.SetNativeSize();
-
-        attrTxt.text = StringUtility.Concat(PlayerPropertyConfig.Get(horseIDConfig.AttrID).ShowName, " ", "+", PlayerPropertyConfig.GetValueDescription(horseIDConfig.AttrID, HorseManager.Instance.GetNowAttrValue(horseIDConfig.AttrID)));
+        HorseManager.Instance.GetRiderTotalAttrInfoByHorseID(horseID, out int attrID, out long value, out PlayerPropertyConfig playerPropertyConfig);
+        attrTxt.text = StringUtility.Concat(PlayerPropertyConfig.Get(attrID).ShowName, " ", "+", PlayerPropertyConfig.GetValueDescription(attrID, value));
 
     }
 

--
Gitblit v1.8.0