diff --git a/light_rain.lua b/light_rain.lua index 2a65055..284636f 100644 --- a/light_rain.lua +++ b/light_rain.lua @@ -26,7 +26,7 @@ local SKYCOLOR_LAYER = "happy_weather_light_rain_sky" light_rain.is_starting = function(dtime, position) if light_rain.last_check + light_rain.check_interval < os.time() then light_rain.last_check = os.time() - if math.random() < 0.2 then + if math.random() < 0.15 then return true end end @@ -42,7 +42,7 @@ end light_rain.is_ending = function(dtime) if light_rain.last_check + light_rain.check_interval < os.time() then light_rain.last_check = os.time() - if math.random() < 0.4 then + if math.random() < 0.5 then return true end end diff --git a/rain.lua b/rain.lua index f1fee73..e9c008a 100644 --- a/rain.lua +++ b/rain.lua @@ -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