diff options
-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") { |