diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-29 20:36:00 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-29 20:36:00 -0400 |
commit | f90f4bc62a664bb24103b8d4a286d519de6b0053 (patch) | |
tree | 3d990db431340c10e2bb69c433be2c5d9fc2e434 /engine/battle/move_effects/present.asm | |
parent | 8d8229d2aab1b1cd06db22cc8db4fa60bc55ccc4 (diff) |
Remove wKickCounter and wPresentPower aliases for wBattleAnimParam
Diffstat (limited to 'engine/battle/move_effects/present.asm')
-rw-r--r-- | engine/battle/move_effects/present.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/move_effects/present.asm b/engine/battle/move_effects/present.asm index 360a4172..33e172fb 100644 --- a/engine/battle/move_effects/present.asm +++ b/engine/battle/move_effects/present.asm @@ -26,7 +26,7 @@ BattleCommand_Present: .got_power ld a, c - ld [wPresentPower], a + ld [wBattleAnimParam], a call AnimateCurrentMoveEitherSide ld d, [hl] pop bc @@ -35,7 +35,7 @@ BattleCommand_Present: .heal_effect pop bc ld a, 3 - ld [wPresentPower], a + ld [wBattleAnimParam], a call AnimateCurrentMove call BattleCommand_SwitchTurn ld hl, AICheckPlayerMaxHP |