Tweak weather durations to be more MC-like
This commit is contained in:
parent
562bd6cd5a
commit
f052f147b5
4 changed files with 26 additions and 12 deletions
|
@ -175,13 +175,6 @@ rain.make_weather = function()
|
|||
end
|
||||
end
|
||||
|
||||
if weather.reg_weathers.rain == nil then
|
||||
weather.reg_weathers.rain = {
|
||||
chance = 15,
|
||||
clear = rain.clear
|
||||
}
|
||||
end
|
||||
|
||||
-- Switch the number of raindrops: "thunder" for many raindrops, otherwise for normal raindrops
|
||||
rain.set_particles_mode = function(mode)
|
||||
if mode == "thunder" then
|
||||
|
@ -242,3 +235,13 @@ if weather.allow_abm then
|
|||
end
|
||||
})
|
||||
end
|
||||
|
||||
if weather.reg_weathers.rain == nil then
|
||||
weather.reg_weathers.rain = {
|
||||
chance = 15,
|
||||
clear = rain.clear,
|
||||
-- 10min - 20min
|
||||
min_duration = 300,
|
||||
max_duration = 600,
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue