diff options
Diffstat (limited to 'npc/functions/weather.txt')
-rw-r--r-- | npc/functions/weather.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt index 9fbaec805..06770e948 100644 --- a/npc/functions/weather.txt +++ b/npc/functions/weather.txt @@ -165,10 +165,14 @@ OnMinute45: announce("The night falls.", bc_all|bc_npc); setbattleflag("mob_spawn_delay", 70); charcommand("@reloadbattleconf"); // Careful! + donpcevent("@exprate::OnReload"); + donpcevent("@droprate::OnReload"); } else if (!is_night() && $@WEATHER_NIGHT) { announce("The day rises.", bc_all|bc_npc); setbattleflag("mob_spawn_delay", 100); charcommand("@reloadbattleconf"); // Careful! + donpcevent("@exprate::OnReload"); + donpcevent("@droprate::OnReload"); } $@WEATHER_NIGHT=is_night(); |