From 53f7d095703a38bd3d7becbf3b8a81f68957d113 Mon Sep 17 00:00:00 2001 From: darsh Date: Wed, 1 Oct 2025 02:49:27 -0400 Subject: [PATCH] utilize WEATHER_RANDOM --- src/weather.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/weather.c b/src/weather.c index a4d4b1a69..ecbc36d59 100644 --- a/src/weather.c +++ b/src/weather.c @@ -52,7 +52,7 @@ void sub_807E5AC(void) { u8 weather; weather = gDungeon->floorProperties.unk4; - if(weather == WEATHER_COUNT) + if(weather == WEATHER_RANDOM) weather = DungeonRandInt(WEATHER_COUNT); sub_807E5E4(weather); TryActivateArtificialWeatherAbilities();