diff options
author | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-01-09 15:48:29 -0500 |
---|---|---|
committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-01-09 15:48:29 -0500 |
commit | 0962135bdbed24c53b58f8b1340b4a6d1af9ce27 (patch) | |
tree | 86f243b4a98dcd14fcc962d8105ca6677922ee65 /engine/battle/moveEffects | |
parent | c99606ee2467382d1c447ccefd529477aa72dce7 (diff) |
More BankF documentation
AnyMoveToSelect to DoesntAffectMonText
Diffstat (limited to 'engine/battle/moveEffects')
-rw-r--r-- | engine/battle/moveEffects/drain_hp_effect.asm | 2 | ||||
-rw-r--r-- | engine/battle/moveEffects/reflect_light_screen_effect.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/moveEffects/drain_hp_effect.asm b/engine/battle/moveEffects/drain_hp_effect.asm index 46d61196..2af286a8 100644 --- a/engine/battle/moveEffects/drain_hp_effect.asm +++ b/engine/battle/moveEffects/drain_hp_effect.asm @@ -85,7 +85,7 @@ DrainHPEffect_: ; 76e7 (1:76e7) ld hl, SuckedHealthText ld a, [H_WHOSETURN] and a - ld a, [W_PLAYERMOVEEFFECT] + ld a, [wPlayerMoveEffect] jr z, .next3 ld a, [wEnemyMoveEffect] .next3 diff --git a/engine/battle/moveEffects/reflect_light_screen_effect.asm b/engine/battle/moveEffects/reflect_light_screen_effect.asm index c3f4de7f..c9e43715 100644 --- a/engine/battle/moveEffects/reflect_light_screen_effect.asm +++ b/engine/battle/moveEffects/reflect_light_screen_effect.asm @@ -1,6 +1,6 @@ ReflectLightScreenEffect_: ; f645d (3d:645d) ld hl, wPlayerBattleStatus3 - ld de, W_PLAYERMOVEEFFECT + ld de, wPlayerMoveEffect ld a, [H_WHOSETURN] and a jr z, .reflectLightScreenEffect |