From 809e710b87c1bdf0c9fec47392fc7c354da9ae3a Mon Sep 17 00:00:00 2001 From: muscode Date: Fri, 1 Nov 2024 10:30:35 -0600 Subject: [PATCH] make applyPostDamage public Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/ability.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index fac1c8d7901..b1e18ebce35 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -4880,7 +4880,7 @@ function calculateShellBellRecovery(pokemon: Pokemon): number { * @extends AbAttr */ export class PostDamageAbAttr extends AbAttr { - applyPostDamage(pokemon: Pokemon, damage: number, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { + public applyPostDamage(pokemon: Pokemon, damage: number, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } }