Implement more logical weather transitions

This commit is contained in:
Wuzzy 2017-11-12 06:57:11 +01:00
parent 15b96ff7cf
commit f0e0e754b0
4 changed files with 47 additions and 36 deletions

View file

@ -83,11 +83,15 @@ end)
-- register snow weather
if weather.reg_weathers.snow == nil then
weather.reg_weathers.snow = {
chance = 10,
clear = snow.clear,
-- 10min - 20min
min_duration = 600,
max_duration = 1200,
transitions = {
[65] = "none",
[80] = "rain",
[100] = "thunder",
}
}
end