mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 16:26:25 +00:00
Added double battle exclusion to Endless bosses.
This commit is contained in:
parent
0c521bbe08
commit
530511f0b7
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user