Rounds limit will not reduce when in pure fiction

This commit is contained in:
moux23333
2024-01-15 21:53:49 +08:00
committed by Melledy
parent 09931d5a1e
commit 050db3ad9d

View File

@@ -155,7 +155,9 @@ public class ChallengeInstance {
}
// Calculate rounds left
this.roundsLeft = Math.min(Math.max(this.roundsLeft - stats.getRoundCnt(), 1), this.roundsLeft);
if (!this.isStory()) {
this.roundsLeft = Math.min(Math.max(this.roundsLeft - stats.getRoundCnt(), 1), this.roundsLeft);
}
// Set saved technique points (This will be restored if the player resets the challenge)
this.savedMp = player.getCurrentLineup().getMp();