From 186a2a598538b9c175ab5b7ada79a4bc3914fa3e Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:20:54 -0500 Subject: [PATCH] Pass source to postApplyDamage in pokemon.ts --- 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 cc424e0ea08..ec7bd5581ca 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -4049,7 +4049,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * Multi-hits are handled in move-effect-phase.ts for PostDamageAbAttr */ if (!source || source.turnData.hitCount <= 1) { - applyAbAttrs("PostDamageAbAttr", { pokemon: this, damage }); + applyAbAttrs("PostDamageAbAttr", { pokemon: this, damage, source }); } return damage; }