summaryrefslogtreecommitdiff
path: root/engine/battle/move_effects/present.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-08-29 20:35:49 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-08-29 20:35:49 -0400
commitcf37abd3ecb69a9bb6f4bbf1e5ae4d77d37a4c68 (patch)
treee5ec7b78924f47e800dfa47ffae6b5ba452f82b6 /engine/battle/move_effects/present.asm
parent49bbc993b76ef05d63ce6fa508a1ac2ee81f8241 (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.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/move_effects/present.asm b/engine/battle/move_effects/present.asm
index 188c4e889..8d7461fa1 100644
--- a/engine/battle/move_effects/present.asm
+++ b/engine/battle/move_effects/present.asm
@@ -41,7 +41,7 @@ BattleCommand_Present:
.got_power
ld a, c
- ld [wPresentPower], a
+ ld [wBattleAnimParam], a
call AnimateCurrentMoveEitherSide
ld d, [hl]
pop bc
@@ -49,8 +49,8 @@ BattleCommand_Present:
.heal_effect
pop bc
- ld a, 3
- ld [wPresentPower], a
+ ld a, $3 ; heal animation
+ ld [wBattleAnimParam], a
call AnimateCurrentMove
call BattleCommand_SwitchTurn
ld hl, AICheckPlayerMaxHP