Fix multi-hit moves called from Metronome/etc, fixes #3914

This commit is contained in:
NightKev 2024-09-06 02:22:37 -07:00
parent 006c918e0b
commit 3aea343dc5
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ export class MovePhase extends BattlePhase {
// Reset hit-related turn data when starting follow-up moves (e.g. Metronomed moves, Dancer repeats)
if (this.followUp) {
this.pokemon.turnData.hitsLeft = 0;
this.pokemon.turnData.hitsLeft = -1;
this.pokemon.turnData.hitCount = 0;
}