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 } }