From 9c85e977ca36dde375cc0e4d705a217963d09f90 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Tue, 29 Apr 2025 23:15:08 -0400 Subject: [PATCH] Update pokemon.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 35fbb9133b3..d76afb519ec 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -4952,7 +4952,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { /** * Find and remove all {@linkcode BattlerTag}s matching the given function. * @param tagFilter a function dictating which tags to remove - */ + */ findAndRemoveTags(tagFilter: (tag: BattlerTag) => boolean): void { const tags = this.summonData.tags; const tagsToRemove = tags.filter(t => tagFilter(t));