summaryrefslogtreecommitdiff
path: root/src/field/field_weather_effects.c
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-01-18 18:33:37 -0800
committerGitHub <noreply@github.com>2018-01-18 18:33:37 -0800
commit1d8798203e86b61e889ea1c0fba851cbdbdd03d7 (patch)
tree129a2f696f5f35f1f13a0fd11b421b822b401d93 /src/field/field_weather_effects.c
parentd69b05190e3edb03e7cbc50360c70d1501e9ad0e (diff)
parenta0cb6c72b6ba7c1b2d2464f3c1ac04354d5d05de (diff)
Merge pull request #535 from ProjectRevoTPP/fixes
fixes
Diffstat (limited to 'src/field/field_weather_effects.c')
-rw-r--r--src/field/field_weather_effects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/field/field_weather_effects.c b/src/field/field_weather_effects.c
index 5a59d6c2a..7406363a5 100644
--- a/src/field/field_weather_effects.c
+++ b/src/field/field_weather_effects.c
@@ -2380,5 +2380,5 @@ void UpdateRainCounter(u8 newWeather, u8 oldWeather)
{
if (newWeather != oldWeather
&& (newWeather == WEATHER_RAIN_LIGHT || newWeather == WEATHER_RAIN_MED))
- IncrementGameStat(0x28);
+ IncrementGameStat(GAME_STAT_GOT_RAINED_ON);
}