Update sky instant if teleport between dimensions

This commit is contained in:
Wuzzy 2017-11-24 03:48:32 +01:00
parent b0c87f74fe
commit b1d15fb667
5 changed files with 60 additions and 1 deletions

View file

@ -6,7 +6,7 @@ mcl_weather.skycolor = {
force_update = true,
-- Update interval.
update_interval = 0.5,
update_interval = 15,
-- Main sky colors: starts from midnight to midnight.
-- Please do not set directly. Use add_layer instead.
@ -240,3 +240,7 @@ end
minetest.register_on_joinplayer(initsky)
minetest.register_on_respawnplayer(initsky)
mcl_worlds.register_on_dimension_change(function(player)
mcl_weather.skycolor.update_sky_color({player})
end)

View file

@ -218,3 +218,5 @@ local weather_allow_abm = minetest.settings:get_bool("weather_allow_abm")
if weather_allow_abm ~= nil and weather_allow_abm == false then
mcl_weather.allow_abm = false
end