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; } }