diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-22 21:42:13 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-22 21:42:13 -0200 |
commit | 49aa38ec122789a2e62086a79524bf587be4d0c2 (patch) | |
tree | 13c3631f61455823754fc54e19786a6ddd4b868b /npc | |
parent | f5f509c3ddec51d2bf3e73998bdb3c26468a700c (diff) | |
download | serverdata-49aa38ec122789a2e62086a79524bf587be4d0c2.tar.gz serverdata-49aa38ec122789a2e62086a79524bf587be4d0c2.tar.bz2 serverdata-49aa38ec122789a2e62086a79524bf587be4d0c2.tar.xz serverdata-49aa38ec122789a2e62086a79524bf587be4d0c2.zip |
Fix snowfall on weather configuration.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/weather.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt index d0bce445d..af07f3051 100644 --- a/npc/functions/weather.txt +++ b/npc/functions/weather.txt @@ -121,7 +121,10 @@ OnMinute45: } else if (.@type$ == "woodland") { if (.@r < 300) .@mk=.@mk|MASK_RAIN; - if (season() == WINTER) + + if ($EVENT$ == "Christmas") + .@mk=.@mk|MASK_SNOW; + else if (season() == WINTER && .@r >= 9250) .@mk=.@mk|MASK_SNOW; } else if (.@type$ == "iceland") { |