diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-29 20:35:49 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-29 20:35:49 -0400 |
commit | cf37abd3ecb69a9bb6f4bbf1e5ae4d77d37a4c68 (patch) | |
tree | e5ec7b78924f47e800dfa47ffae6b5ba452f82b6 /engine/battle/move_effects/triple_kick.asm | |
parent | 49bbc993b76ef05d63ce6fa508a1ac2ee81f8241 (diff) |
Remove wKickCounter and wPresentPower aliases for wBattleAnimParam
Diffstat (limited to 'engine/battle/move_effects/triple_kick.asm')
-rw-r--r-- | engine/battle/move_effects/triple_kick.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/move_effects/triple_kick.asm b/engine/battle/move_effects/triple_kick.asm index e41044c9d..a192ddaaa 100644 --- a/engine/battle/move_effects/triple_kick.asm +++ b/engine/battle/move_effects/triple_kick.asm @@ -1,7 +1,7 @@ BattleCommand_TripleKick: ; triplekick - ld a, [wKickCounter] + ld a, [wBattleAnimParam] ld b, a inc b ld hl, wCurDamage + 1 @@ -29,6 +29,6 @@ BattleCommand_TripleKick: BattleCommand_KickCounter: ; kickcounter - ld hl, wKickCounter + ld hl, wBattleAnimParam inc [hl] ret |