diff options
author | yenatch <yenatch@gmail.com> | 2017-06-24 19:06:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-24 19:06:37 -0400 |
commit | 60f6430d05cb858df709f6bd87ef02526bb12077 (patch) | |
tree | 17edb04dcd0fd09d0d14459ea5566093305b04dd /constants/battle_constants.asm | |
parent | d0d61cb3ab847ff0c72a840363b89d4acf05b5f5 (diff) | |
parent | 0fbc74a8c7596455b1cf33e1ff8c499215e1c1e1 (diff) |
Merge pull request #371 from yenatch/graphics
Use sha1sum instead of md5sum to compare roms
Diffstat (limited to 'constants/battle_constants.asm')
-rw-r--r-- | constants/battle_constants.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/constants/battle_constants.asm b/constants/battle_constants.asm index 804f223cb..793650913 100644 --- a/constants/battle_constants.asm +++ b/constants/battle_constants.asm @@ -91,12 +91,12 @@ const_value SET 1 const BATTLE_VARS_LAST_MOVE_OPP ; status +SLP EQU 7 ; 0-7 turns const_value SET 3 const PSN const BRN const FRZ const PAR - const SLP ; 7 turns ALL_STATUS EQU (1 << PSN) + (1 << BRN) + (1 << FRZ) + (1 << PAR) + SLP |