diff options
author | yenatch <yenatch@gmail.com> | 2017-06-24 17:49:31 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-06-24 17:49:31 -0400 |
commit | 866ca63c514a8f3a6dbadbaba3da96209abb51cf (patch) | |
tree | 8b02deaa61bf7a250b84d5828dad15bc56afc9d2 | |
parent | d0d61cb3ab847ff0c72a840363b89d4acf05b5f5 (diff) |
Fix a misleading define for SLP
-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 |