From bd8d6291558fb9e3635122814ff83e3ccd4487ab Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:52:53 -0700 Subject: [PATCH] Update src/data/battler-tags.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/battler-tags.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 98b3f06a06e..9f133355a6f 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2201,13 +2201,6 @@ export class HealBlockTag extends MoveRestrictionBattlerTag { super(BattlerTagType.HEAL_BLOCK, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], turnCount, sourceMove); } - /** - * Uses the default onAdd method - */ - override onAdd(pokemon: Pokemon): void { - super.onAdd(pokemon); - } - onActivation(pokemon: Pokemon): string { return i18next.t("battle:battlerTagsHealBlock", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }); }