diff options
author | yenatch <yenatch@gmail.com> | 2014-06-17 11:58:11 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-06-17 11:58:11 -0700 |
commit | c2dba431884fdd9d61a90f6c3efd1876aa1cfa14 (patch) | |
tree | bc2d055295c0c63722c41f3eeed1f38e009d68c2 /battle/effects/curse.asm | |
parent | 541a9c73472db20472db5531cba196a0dcd148ea (diff) |
Contest battle type and comment the battle menu.
Diffstat (limited to 'battle/effects/curse.asm')
-rw-r--r-- | battle/effects/curse.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/effects/curse.asm b/battle/effects/curse.asm index f82ed97c5..27f821ffc 100644 --- a/battle/effects/curse.asm +++ b/battle/effects/curse.asm @@ -67,10 +67,10 @@ BattleCommand54: ; 37588 ld a, BATTLE_VARS_SUBSTATUS1_OPP call GetBattleVarAddr - bit 1, [hl] + bit SUBSTATUS_CURSE, [hl] jr nz, .failed - set 1, [hl] + set SUBSTATUS_CURSE, [hl] call AnimateCurrentMove ld hl, GetHalfMaxHP call CallBattleCore |