mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-12 21:34:35 +01:00
Rounds limit will not reduce when in pure fiction
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user