From 4927bcdc4ef729900580e8527c48144de45766e8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 18 Aug 2017 15:11:43 +0200 Subject: [PATCH] Make Nether sky reddish --- mods/PLAYER/mcl_playerplus/init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mods/PLAYER/mcl_playerplus/init.lua b/mods/PLAYER/mcl_playerplus/init.lua index 3f6cc1818..c33e6edd3 100644 --- a/mods/PLAYER/mcl_playerplus/init.lua +++ b/mods/PLAYER/mcl_playerplus/init.lua @@ -158,8 +158,10 @@ minetest.register_globalstep(function(dtime) -- FIXME: Sky handling in MCL2 is held together with lots of duct tape. -- This only works beause weather_pack currently does not touch the sky for players below the height used for this check. -- There should be a real skybox API. - if dim == "void" or dim == "nether" or dim == "end" then + if dim == "void" or dim == "end" then player:set_sky("#000000", "plain", nil, false) + elseif dim == "nether" then + player:set_sky("#300810", "plain", nil, false) end if void_deadly then -- Player is deep into the void, deal void damage