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