Skip to content

Commit

Permalink
Added double battle exclusion to Endless bosses.
Browse files Browse the repository at this point in the history
  • Loading branch information
frutescens committed Nov 13, 2024
1 parent 0c521bb commit 530511f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/battle-scene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,11 @@ export default class BattleScene extends SceneBase {
newDouble = false;
}

// Disable double battles on Endless/Endless Spliced Wave 50x boss battles (Introduced 1.2.0)
if (this.gameMode.isEndlessBoss(newWaveIndex)) {
newDouble = false;
}

const lastBattle = this.currentBattle;

const maxExpLevel = this.getMaxExpLevel();
Expand Down

0 comments on commit 530511f

Please sign in to comment.