diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 22:20:42 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 22:20:42 -0500 |
commit | b2866fae2126012f7d7b4db8b60e07ba344a5f97 (patch) | |
tree | cde82302278e417e69bbb45e90bba3f77edd2ac3 /src/field_specials.c | |
parent | b105d20d1e0297d0c858fe99a0946e5c07da81c1 (diff) |
Document the weather state functions
All weather types are now documented (including WEATHER_15)
Diffstat (limited to 'src/field_specials.c')
-rw-r--r-- | src/field_specials.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/field_specials.c b/src/field_specials.c index 3c26085dd..307f81399 100644 --- a/src/field_specials.c +++ b/src/field_specials.c @@ -54,6 +54,7 @@ #include "constants/moves.h" #include "constants/vars.h" #include "constants/battle_frontier.h" +#include "constants/weather.h" EWRAM_DATA bool8 gBikeCyclingChallenge = FALSE; EWRAM_DATA u8 gBikeCollisions = 0; @@ -3527,9 +3528,9 @@ bool8 sub_813B3B0(void) } } -void sub_813B484(void) +void Unused_SetWeatherSunny(void) { - sub_80AB104(2); + SetCurrentAndNextWeather(WEATHER_SUNNY); } bool32 sub_813B490(void) |