diff options
author | einstein95 <einstein95@users.noreply.github.com> | 2017-09-30 21:55:14 +1300 |
---|---|---|
committer | einstein95 <einstein95@users.noreply.github.com> | 2017-09-30 21:55:14 +1300 |
commit | 9d864ede0e89cd95c9d2ff090a218bd64611fdee (patch) | |
tree | d4b18f8eb867228fc6e81356bceadf3be188cc2f /engine/battle/core.asm | |
parent | 66e9f2288377f697bd8a63b9fe7dbe4a314ff200 (diff) | |
parent | 5c2419383118280465a89657fed34ed6562f2981 (diff) |
Diffstat (limited to 'engine/battle/core.asm')
-rwxr-xr-x | engine/battle/core.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index a60fe4a1..6ec9930c 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -3151,7 +3151,7 @@ ExecutePlayerMove: jp z, ExecutePlayerMoveDone call CheckPlayerStatusConditions jr nz, .playerHasNoSpecialCondition - jp [hl] + jp hl .playerHasNoSpecialCondition call GetCurrentMove ld hl, wPlayerBattleStatus1 @@ -5691,7 +5691,7 @@ ExecuteEnemyMove: ld [wDamageMultipliers], a call CheckEnemyStatusConditions jr nz, .enemyHasNoSpecialConditions - jp [hl] + jp hl .enemyHasNoSpecialConditions ld hl, wEnemyBattleStatus1 bit ChargingUp, [hl] ; is the enemy charging up for attack? @@ -7144,7 +7144,7 @@ _JumpMoveEffect: ld a, [hli] ld h, [hl] ld l, a - jp [hl] ; jump to special effect handler + jp hl ; jump to special effect handler MoveEffectPointerTable: dw SleepEffect ; unused effect |