fix: MoC turn counter

This commit is contained in:
Somebody
2025-01-19 10:44:49 +08:00
parent 225babf405
commit 537a1c2680

View File

@@ -296,7 +296,7 @@ public class ChallengeInstance
if (monsters == 0) await AdvanceStage(req);
// Calculate rounds left
if (IsStory()) RoundsLeft = (int)Math.Min(Math.Max(RoundsLeft - req.Stt.RoundCnt, 1), RoundsLeft);
if (!(IsStory() && IsBoss())) RoundsLeft = (int)Math.Min(Math.Max(RoundsLeft - req.Stt.RoundCnt, 1), RoundsLeft);
// Set saved technique points (This will be restored if the player resets the challenge)
SavedMp = Player.LineupManager!.GetCurLineup()!.Mp;