Fix Party Heal

This commit is contained in:
xsn34kzx 2025-08-03 23:57:40 -04:00
parent 2a7da4681f
commit ac80209848

View File

@ -22,7 +22,7 @@ export class SelectBiomePhase extends BattlePhase {
const setNextBiome = (nextBiome: BiomeId) => {
if (nextWaveIndex % 10 === 1) {
globalScene.applyModifiers(MoneyInterestModifier, true);
const healStatus = new BooleanHolder(false);
const healStatus = new BooleanHolder(true);
applyChallenges(ChallengeType.PARTY_HEAL, healStatus);
if (healStatus.value) {
globalScene.phaseManager.unshiftNew("PartyHealPhase", false);