diff options
author | einstein95 <einstein95@users.noreply.github.com> | 2017-01-17 11:47:05 +1300 |
---|---|---|
committer | einstein95 <einstein95@users.noreply.github.com> | 2017-01-17 11:47:05 +1300 |
commit | 22e16624b8c295e5f45cdf432c5ded8bc0d388ee (patch) | |
tree | 2566861d807a3bb26d4a78839064a2fdcaae0fca | |
parent | d5dd5b2dd18815a9897aadc50dd7d5dbd431d572 (diff) | |
parent | 46fbe5531b370a2f932e3f204de1e7527a5a3b6d (diff) |
Merge branch 'master' of https://github.com/pret/pokered
-rw-r--r-- | engine/battle/moveEffects/haze_effect.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/battle/moveEffects/haze_effect.asm b/engine/battle/moveEffects/haze_effect.asm index bd20f231..06907bcc 100644 --- a/engine/battle/moveEffects/haze_effect.asm +++ b/engine/battle/moveEffects/haze_effect.asm @@ -12,6 +12,7 @@ HazeEffect_: ld hl, wEnemyMonUnmodifiedAttack ld de, wEnemyMonAttack call ResetStats +; cure non-volatile status, but only for the target ld hl, wEnemyMonStatus ld de, wEnemySelectedMove ld a, [H_WHOSETURN] @@ -46,7 +47,6 @@ HazeEffect_: jp PrintText CureVolatileStatuses: -; only cures statuses of the Pokemon not using Haze res Confused, [hl] inc hl ; BATTSTATUS2 ld a, [hl] |