From 6908faa884d7aebca9e22052ba481240af06fe89 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 16 九月 2025 12:09:31 +0800
Subject: [PATCH] 0312 官职显示数字问题
---
Main/System/OfficialRank/OfficialLVUPSuccessWin.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Main/System/OfficialRank/OfficialLVUPSuccessWin.cs b/Main/System/OfficialRank/OfficialLVUPSuccessWin.cs
index 9a4e02b..7beb62e 100644
--- a/Main/System/OfficialRank/OfficialLVUPSuccessWin.cs
+++ b/Main/System/OfficialRank/OfficialLVUPSuccessWin.cs
@@ -52,8 +52,8 @@
for (int i = 0; i < attrNameText.Length; i++)
{
attrNameText[i].text = PlayerPropertyConfig.Get(config.AddAttrType[i]).Name;
- attrPerTextArr[i].text = PlayerPropertyConfig.GetValueDescription(config.AddAttrType[i], beforeConfig.AddAttrType[i]);
- nextAttrPerTextArr[i].text = PlayerPropertyConfig.GetValueDescription(config.AddAttrType[i], config.AddAttrType[i]);
+ attrPerTextArr[i].text = PlayerPropertyConfig.GetValueDescription(config.AddAttrType[i], beforeConfig.AddAttrNum[i]);
+ nextAttrPerTextArr[i].text = PlayerPropertyConfig.GetValueDescription(config.AddAttrType[i], config.AddAttrNum[i]);
}
--
Gitblit v1.8.0