From 4b6f2862d8adf17603e9d21aaa4e9c6b5581114e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=94=E5=BF=B5?= <1@72wo.cn> Date: Thu, 1 Jan 2026 05:38:59 +0800 Subject: [PATCH] =?UTF-8?q?```=20feat(fight=5Ftawor):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=AF=95=E7=82=BC=E4=B9=8B=E5=A1=94=E5=92=8C=E5=8B=87=E8=80=85?= =?UTF-8?q?=E4=B9=8B=E5=A1=94=E5=85=B3=E5=8D=A1=E8=BF=9B=E5=BA=A6=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修正试炼之塔关卡进度计算,将 CurrentFreshStage 的计算公式调整为 (Level-1)*10 + 1 - 修正勇者之塔关卡进度计算,将 CurrentStage 的计算公式调整为 (Level-1)*10 + 1 - 移除多余的空格,统一计算表达式格式 ``` --- logic/controller/fight_tawor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logic/controller/fight_tawor.go b/logic/controller/fight_tawor.go index bab317697..50e67b3b6 100644 --- a/logic/controller/fight_tawor.go +++ b/logic/controller/fight_tawor.go @@ -36,9 +36,9 @@ func (h Controller) FreshChoiceFightLevel(data *fight.C2S_FRESH_CHOICE_FIGHT_LEV switch data.Head.CMD { case 2428: //试炼之塔 - c.Info.CurrentFreshStage = uint32((data.Level - 1) * 10) + c.Info.CurrentFreshStage = uint32((data.Level-1)*10) + 1 case 2414: //勇者之塔 - c.Info.CurrentStage = uint32((data.Level - 1) * 10) + c.Info.CurrentStage = uint32((data.Level-1)*10) + 1 } }