diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-09-01 19:05:06 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-09-01 19:05:06 +0200 |
commit | ead21250a6e1ef3ebb4f7e69fd22dcb09be31ef8 (patch) | |
tree | dcc0a689103f765d0d080174b87da1c80f07a8a4 /include/constants | |
parent | 38c89b9d0f0c71a2a8dfe2f38473338530a97ab9 (diff) |
Label all battle ai scripts
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/battle_ai.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/constants/battle_ai.h b/include/constants/battle_ai.h index 7d2c70307..4c3a45dc6 100644 --- a/include/constants/battle_ai.h +++ b/include/constants/battle_ai.h @@ -35,8 +35,8 @@ // script's table id to bit #define AI_SCRIPT_CHECK_BAD_MOVE (1 << 0) -#define AI_SCRIPT_CHECK_VIABILITY (1 << 1) -#define AI_SCRIPT_TRY_TO_FAINT (1 << 2) +#define AI_SCRIPT_TRY_TO_FAINT (1 << 1) +#define AI_SCRIPT_CHECK_VIABILITY (1 << 2) #define AI_SCRIPT_SETUP_FIRST_TURN (1 << 3) #define AI_SCRIPT_RISKY (1 << 4) #define AI_SCRIPT_PREFER_STRONGEST_MOVE (1 << 5) |