mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-07 07:59:26 +02:00
Fix Party Heal
This commit is contained in:
parent
2a7da4681f
commit
ac80209848
@ -22,7 +22,7 @@ export class SelectBiomePhase extends BattlePhase {
|
|||||||
const setNextBiome = (nextBiome: BiomeId) => {
|
const setNextBiome = (nextBiome: BiomeId) => {
|
||||||
if (nextWaveIndex % 10 === 1) {
|
if (nextWaveIndex % 10 === 1) {
|
||||||
globalScene.applyModifiers(MoneyInterestModifier, true);
|
globalScene.applyModifiers(MoneyInterestModifier, true);
|
||||||
const healStatus = new BooleanHolder(false);
|
const healStatus = new BooleanHolder(true);
|
||||||
applyChallenges(ChallengeType.PARTY_HEAL, healStatus);
|
applyChallenges(ChallengeType.PARTY_HEAL, healStatus);
|
||||||
if (healStatus.value) {
|
if (healStatus.value) {
|
||||||
globalScene.phaseManager.unshiftNew("PartyHealPhase", false);
|
globalScene.phaseManager.unshiftNew("PartyHealPhase", false);
|
||||||
|
Loading…
Reference in New Issue
Block a user