Only apply Moxie and Beast Boost when on field

This commit is contained in:
Flashfyre 2024-03-29 23:16:28 -04:00
parent 1be1be7098
commit 371b00561a
1 changed files with 2 additions and 1 deletions

View File

@ -3011,7 +3011,8 @@ export class VictoryPhase extends PokemonPhase {
if (exp) { if (exp) {
const partyMemberIndex = party.indexOf(expPartyMembers[pm]); const partyMemberIndex = party.indexOf(expPartyMembers[pm]);
this.scene.unshiftPhase(expPartyMembers[pm].isOnField() ? new ExpPhase(this.scene, partyMemberIndex, exp) : new ShowPartyExpBarPhase(this.scene, partyMemberIndex, exp)); this.scene.unshiftPhase(expPartyMembers[pm].isOnField() ? new ExpPhase(this.scene, partyMemberIndex, exp) : new ShowPartyExpBarPhase(this.scene, partyMemberIndex, exp));
applyPostVictoryAbAttrs(PostVictoryAbAttr, expPartyMembers[pm]); if (expPartyMembers[pm].isOnField())
applyPostVictoryAbAttrs(PostVictoryAbAttr, expPartyMembers[pm]);
} }
} }
} }