diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-07-13 18:53:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 18:53:14 -0700 |
commit | 68cf5eb3cbff3b0eac6cd348c7e6c594c287d67b (patch) | |
tree | 6cbdbe8e87708ffca6a49d6b507ed6341b26f4e2 /src/field_specials.c | |
parent | 9238533346fd97c67e48fee33a204d1e8e2dd0a7 (diff) | |
parent | 7dffb108b834afdee807998af24e1ddc4c85d4f9 (diff) |
Merge pull request #654 from huderlem/movement_constants
Move and use movement constants
Diffstat (limited to 'src/field_specials.c')
-rw-r--r-- | src/field_specials.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/field_specials.c b/src/field_specials.c index e8c83b376..043945a2f 100644 --- a/src/field_specials.c +++ b/src/field_specials.c @@ -18,10 +18,6 @@ #include "string_util.h" #include "strings.h" #include "pokeblock.h" -#include "constants/species.h" -#include "constants/abilities.h" -#include "constants/moves.h" -#include "constants/weather.h" #include "text.h" #include "wallclock.h" #include "tv.h" @@ -36,6 +32,11 @@ #include "field_weather.h" #include "pokemon_summary_screen.h" #include "random.h" +#include "constants/abilities.h" +#include "constants/event_object_movement_constants.h" +#include "constants/moves.h" +#include "constants/species.h" +#include "constants/weather.h" #if ENGLISH #define CHAR_DECIMAL_SEPARATOR CHAR_PERIOD |