summaryrefslogtreecommitdiff
path: root/npc/functions/weather.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/weather.txt')
-rw-r--r--npc/functions/weather.txt12
1 files changed, 4 insertions, 8 deletions
diff --git a/npc/functions/weather.txt b/npc/functions/weather.txt
index a4ff37054..5e789a6cf 100644
--- a/npc/functions/weather.txt
+++ b/npc/functions/weather.txt
@@ -83,21 +83,17 @@ OnMinute45:
if (.@type$ == "desert") {
if (.@r < 10)
.@mk=MASK_RAIN;
- else if (.@r < 100)
+ else if (.@r < 300)
.@mk=MASK_SANDSTORM;
} else if (.@type$ == "woodland") {
- if (.@r < 100)
+ if (.@r < 300)
.@mk=MASK_RAIN;
- else if (.@r < 120)
- .@mk=MASK_SANDSTORM;
- else if (.@r < 140)
- .@mk=MASK_SNOW;
} else if (.@type$ == "iceland") {
- if (.@r < 10)
+ if (.@r < 30)
.@mk=MASK_RAIN;
- else if (.@r < 100)
+ else if (.@r < 300)
.@mk=MASK_SNOW;
} else {