From ac8020984850ba449aef8fd42983cb6f8870fe78 Mon Sep 17 00:00:00 2001 From: xsn34kzx Date: Sun, 3 Aug 2025 23:57:40 -0400 Subject: [PATCH] Fix Party Heal --- src/phases/select-biome-phase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases/select-biome-phase.ts b/src/phases/select-biome-phase.ts index fd6e69e04a7..f4fd11636fc 100644 --- a/src/phases/select-biome-phase.ts +++ b/src/phases/select-biome-phase.ts @@ -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);