mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-14 22:05:34 +01:00
[Bug][Mystery Encounter][Move] MEs with turn 0 moves no longer block sucker punch (#6606)
Add call to `resetTurnData` in mystery encounter cleanup phase
This commit is contained in:
parent
7e40bb24ec
commit
18e4d8d1e8
@ -257,6 +257,10 @@ export class MysteryEncounterBattleStartCleanupPhase extends Phase {
|
||||
globalScene.phaseManager.unshiftNew("ToggleDoublePositionPhase", true);
|
||||
}
|
||||
|
||||
for (const pokemon of globalScene.getField(true)) {
|
||||
pokemon.resetTurnData();
|
||||
}
|
||||
|
||||
this.end();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user