From ae58f9de4f522d374af6d77d86b34052da5d2d2f Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sun, 24 Aug 2025 15:58:27 +0200 Subject: [PATCH] [Hotfix] Leech Seed does not get cleared when user faints (#6388) Lapsing leech seed tag even when source has left field --- src/data/battler-tags.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 104eca0e407..3dbbf747c5c 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1058,8 +1058,7 @@ export class SeedTag extends SerializableBattlerTag { // Check which opponent to restore HP to const source = pokemon.getOpponents().find(o => o.getBattlerIndex() === this.sourceIndex); if (!source) { - console.warn(`Failed to get source Pokemon for SeedTag lapse; id: ${this.sourceId}`); - return false; + return true; } const cancelled = new BooleanHolder(false);