diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-12-12 11:14:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 11:14:48 -0500 |
commit | ba3021db64bd9518f324c1ad89e63e90278f0eb4 (patch) | |
tree | a28749b41d57f948244a310953ee9ec3d6d3f2d2 /include/constants | |
parent | 52b7576a5e636c4bfe6e5c212515d17bdc4bcac0 (diff) | |
parent | 55bc2b4bb943d3c7d4e3c94609777df335db8cf2 (diff) |
Merge pull request #1268 from LOuroboros/move_flags
Corrected small inconsistency in move flag names
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/pokemon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 4cf0bd4f0..bac914fec 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -241,10 +241,10 @@ // Battle move flags #define FLAG_MAKES_CONTACT (1 << 0) #define FLAG_PROTECT_AFFECTED (1 << 1) -#define FLAG_MAGICCOAT_AFFECTED (1 << 2) +#define FLAG_MAGIC_COAT_AFFECTED (1 << 2) #define FLAG_SNATCH_AFFECTED (1 << 3) #define FLAG_MIRROR_MOVE_AFFECTED (1 << 4) -#define FLAG_KINGSROCK_AFFECTED (1 << 5) +#define FLAG_KINGS_ROCK_AFFECTED (1 << 5) // Growth rates #define GROWTH_MEDIUM_FAST 0 |