diff options
Diffstat (limited to 'engine/battle/move_effects/sketch.asm')
-rw-r--r-- | engine/battle/move_effects/sketch.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/move_effects/sketch.asm b/engine/battle/move_effects/sketch.asm index af6f8cc8c..93f7ff30c 100644 --- a/engine/battle/move_effects/sketch.asm +++ b/engine/battle/move_effects/sketch.asm @@ -26,11 +26,11 @@ BattleCommand_Sketch: ; 35a74 ld d, h ld e, l ; Get the battle move structs. - ld hl, BattleMonMoves + ld hl, wBattleMonMoves ld a, [hBattleTurn] and a jr z, .get_last_move - ld hl, EnemyMonMoves + ld hl, wEnemyMonMoves .get_last_move ld a, BATTLE_VARS_LAST_COUNTER_MOVE_OPP call GetBattleVar @@ -69,7 +69,7 @@ BattleCommand_Sketch: ; 35a74 ld hl, Moves + MOVE_PP call GetMoveAttr pop hl - ld bc, BattleMonPP - BattleMonMoves + ld bc, wBattleMonPP - wBattleMonMoves add hl, bc ld [hl], a pop bc |