From 7b479d06f764164554475e9b35640c02bd6590fc Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Thu, 20 Feb 2025 10:35:08 +0100 Subject: [PATCH] Ensure that leaveField() is called on recall --- src/phases/return-phase.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/phases/return-phase.ts b/src/phases/return-phase.ts index 8a876268c8e..acc815e57f7 100644 --- a/src/phases/return-phase.ts +++ b/src/phases/return-phase.ts @@ -9,6 +9,8 @@ export class ReturnPhase extends SwitchSummonPhase { } switchAndSummon(): void { + const pokemon = this.getPokemon(); + pokemon.leaveField(); this.end(); }