summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-06 06:38:32 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-06 06:38:32 -0300
commit238095b40b63fc393520f9014c4bcf036f2365c1 (patch)
tree23398f88f63e8328b036bed9b9342740f4606f44
parent395bfa2a136b9d8074ba4712e5febedfde3502ac (diff)
downloadserverdata-238095b40b63fc393520f9014c4bcf036f2365c1.tar.gz
serverdata-238095b40b63fc393520f9014c4bcf036f2365c1.tar.bz2
serverdata-238095b40b63fc393520f9014c4bcf036f2365c1.tar.xz
serverdata-238095b40b63fc393520f9014c4bcf036f2365c1.zip
[skip ci] PS. During winter we still send 16 update packets.
-rw-r--r--npc/functions/weather.txt6
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));