diff options
Diffstat (limited to 'battle/effects/mirror_move.asm')
-rw-r--r-- | battle/effects/mirror_move.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/battle/effects/mirror_move.asm b/battle/effects/mirror_move.asm index 32a1998bb..c4f208d77 100644 --- a/battle/effects/mirror_move.asm +++ b/battle/effects/mirror_move.asm @@ -1,7 +1,7 @@ -BattleCommand1b: ; 373c9 +BattleCommand_MirrorMove: ; 373c9 ; mirrormove - call Function372d8 + call ClearLastMove ld a, BATTLE_VARS_MOVE call GetBattleVarAddr @@ -37,16 +37,16 @@ BattleCommand1b: ; 373c9 call GetMoveData call GetMoveName call CopyName1 - call Function34548 + call CheckUserIsCharging jr nz, .done - ld a, [wc689] + ld a, [wKickCounter] push af - call BattleCommand0a + call BattleCommand_LowerSub pop af - ld [wc689], a + ld [wKickCounter], a .done - call BattleCommandaa + call BattleCommand_MoveDelay jp ResetTurn ; 37418 |