From 95f62236f73c61a3d863eee1113dc6576109bd2a Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 18 Aug 2017 16:40:36 +0200 Subject: [PATCH] Fix Nether sky color --- mods/PLAYER/mcl_playerplus/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/PLAYER/mcl_playerplus/init.lua b/mods/PLAYER/mcl_playerplus/init.lua index a4f7473d8..02bd7b5cc 100644 --- a/mods/PLAYER/mcl_playerplus/init.lua +++ b/mods/PLAYER/mcl_playerplus/init.lua @@ -164,7 +164,7 @@ minetest.register_globalstep(function(dtime) local t = "mcl_playerplus_end_sky.png" player:set_sky("#000000", "skybox", {t,t,t,t,t,t}, false) elseif dim == "nether" then - player:set_sky("#300810", "plain", nil, false) + player:set_sky("#300808", "plain", nil, false) end if void_deadly then -- Player is deep into the void, deal void damage