From 3df64d94264cdfa25585c6676fe52fd38014ddb7 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 22 Nov 2017 01:56:41 +0100 Subject: [PATCH] Tweak day/night ratio issues --- mods/PLAYER/mcl_playerplus/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/PLAYER/mcl_playerplus/init.lua b/mods/PLAYER/mcl_playerplus/init.lua index 6ecc922b9..7a4bafd1f 100644 --- a/mods/PLAYER/mcl_playerplus/init.lua +++ b/mods/PLAYER/mcl_playerplus/init.lua @@ -165,8 +165,10 @@ minetest.register_globalstep(function(dtime) elseif dim == "end" then local t = "mcl_playerplus_end_sky.png" player:set_sky("#000000", "skybox", {t,t,t,t,t,t}, false) + player:set_day_night_override_ratio(nil) elseif dim == "nether" then player:set_sky("#300808", "plain", nil, false) + player:set_day_night_override_ratio(nil) else mcl_weather.skycolor.update_sky_color({player}) end