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

@ -49,10 +49,12 @@ end
-- register thunderstorm weather
if weather.reg_weathers.thunder == nil then
weather.reg_weathers.thunder = {
chance = 5,
clear = thunder.clear,
-- 10min - 20min
min_duration = 600,
max_duration = 1200,
transitions = {
[100] = "rain",
}
}
end