[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:
Sirz Benjie 2025-09-29 13:36:42 -05:00 committed by GitHub
parent 7e40bb24ec
commit 18e4d8d1e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();
}
}