From 0d226a53cc7a1b93ee6a494be5965c37f98310ae Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 29 十二月 2025 23:21:24 +0800
Subject: [PATCH] 0312 武将招募增加心愿符

---
 Main/System/InternalAffairs/GoldRushWorkCell.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Main/System/InternalAffairs/GoldRushWorkCell.cs b/Main/System/InternalAffairs/GoldRushWorkCell.cs
index fc32eda..7a5667f 100644
--- a/Main/System/InternalAffairs/GoldRushWorkCell.cs
+++ b/Main/System/InternalAffairs/GoldRushWorkCell.cs
@@ -62,7 +62,7 @@
         {
             if (endTime != 0)
             {
-                timeText.text = TimeUtility.SecondsToMS(endTime - TimeUtility.AllSeconds);
+                timeText.text = TimeUtility.SecondsToHMS(endTime - TimeUtility.AllSeconds);
                 //鎸夊師鎬绘椂闀垮綋杩涘害鏉�
                 slider.value = (config.NeedSeconds - (endTime - TimeUtility.AllSeconds)) / (float)config.NeedSeconds;
             }
@@ -76,8 +76,8 @@
                 if (i < workCnt)
                 {
                     heroModels[i].SetActive(true);
-                    var skinID = GoldRushManager.Instance.skinIDs[(goldID % skinCnt + i) % skinCnt];
-                    heroModels[i].Create(skinID, 0.5f);
+                    var skinID = GoldRushManager.Instance.GetWorkerSkinID(campID, i);
+                    heroModels[i].Create(skinID, 0.6f, motionName:"run");
                 }
                 else
                 {

--
Gitblit v1.8.0