diff options
Diffstat (limited to 'npc/functions/weather.txt')
-rw-r--r-- | npc/functions/weather.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt index d99f0e97e..596f1bde1 100644 --- a/npc/functions/weather.txt +++ b/npc/functions/weather.txt @@ -22,9 +22,9 @@ function script is_night { // // 2 = GETTIME_MINUTE // 3 = GETTIME_HOUR - // Summer: 5h day. 1h night. (4 cycles) - // Others: 3h day. 1h night. (6 cycles) - // Winter: 2h day. 1h night. (8 cycles) + // Summer: 5h day. 1h night. (4 cycles, 8 updates) + // Others: 3h day. 1h night. (6 cycles, 12 updates) + // Winter: 2h day. 1h night. (8 cycles, 16 updates) */ // NEW Unified Rule: Day last 3 hours. Night lasts 1 hour. Always. .@t=(season() == SUMMER ? 6 : (season() == WINTER ? 3 : 4)); |