1
0
mirror of https://gitlab.com/rautars/weather_pack.git synced 2025-07-16 05:40:22 +02:00

lovered chance for rain appearance

This commit is contained in:
Arturas Norkus
2017-05-24 16:12:50 +03:00
parent 17a67b846e
commit 34d9615c60
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ end
rain.is_ending = function(dtime)
if rain.last_check + rain.check_interval < os.time() then
rain.last_check = os.time()
if math.random() < 0.3 then
if math.random() < 0.6 then
happy_weather.request_to_start("light_rain")
return true
end