From 21f5595e06a38d9ecdb6fccdc6e886c9bb2d04bf Mon Sep 17 00:00:00 2001 From: schmidtc1 <62030095+schmidtc1@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:59:04 -0400 Subject: [PATCH] [Bug] Fixes Encore bug with multi-target moves missing (#3060) * Pushes move history even when multi target move misses * Move pushMoveHistory out of Move Pending condition --- src/phases.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/phases.ts b/src/phases.ts index 0bbef602d17..56481502712 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -2942,6 +2942,7 @@ export class MoveEffectPhase extends PokemonPhase { if (moveHistoryEntry.result === MoveResult.PENDING) { moveHistoryEntry.result = MoveResult.MISS; } + user.pushMoveHistory(moveHistoryEntry); applyMoveAttrs(MissEffectAttr, user, null, move); continue; }