From 3f4b014298ae70910d5e4239bab1d8d32e7d2d0e Mon Sep 17 00:00:00 2001 From: Treer Date: Sat, 13 Mar 2021 16:37:12 +1100 Subject: [PATCH 1/3] #41 Allow nether to be in the sky fixes issue #41 (Now that the Nether no longer extends all the way to -31000) --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 8d7880b..5a05c7f 100644 --- a/init.lua +++ b/init.lua @@ -155,7 +155,7 @@ This opens to a truly hellish place, though for small mercies the air there is s The expedition parties have found no diamonds or gold, and after an experienced search party failed to return from the trail of a missing expedition party, I must conclude this is a dangerous place.]], 10 * nether.FASTTRAVEL_FACTOR), is_within_realm = function(pos) -- return true if pos is inside the Nether - return pos.y < nether.DEPTH_CEILING + return pos.y < nether.DEPTH_CEILING and pos.y > nether.DEPTH_FLOOR end, find_realm_anchorPos = function(surface_anchorPos, player_name) From ecce6e27c955427f859a91f0047605f7875488e9 Mon Sep 17 00:00:00 2001 From: Treer Date: Sat, 13 Mar 2021 16:40:55 +1100 Subject: [PATCH 2/3] #42 make lava crust walkable Fixes issue #42 - mobs not being able to walk on lava_crust --- nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.lua b/nodes.lua index eadac0e..3205783 100644 --- a/nodes.lua +++ b/nodes.lua @@ -529,7 +529,7 @@ minetest.register_node("nether:lava_crust", { paramtype = "light", light_source = default.LIGHT_MAX - 3, buildable_to = false, - walkable_to = true, + walkable = true, is_ground_content = true, drop = { items = {{ From fb3c358f74bb4a26d967b10a7eb1d76190251c59 Mon Sep 17 00:00:00 2001 From: Treer Date: Sat, 13 Mar 2021 17:47:32 +1100 Subject: [PATCH 3/3] #43 Ethereal compatibility Ethereal clears every biome when it starts to get rid of the default mapgen, which breaks the nether and can cause crashes. Adding Ethereal as an optional dependency ensures the nether is loaded after Ethereal has already cleared the biomes. --- mod.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.conf b/mod.conf index 84a7a01..6a7e193 100644 --- a/mod.conf +++ b/mod.conf @@ -1,4 +1,4 @@ name = nether description = Adds a deep underground realm with different mapgen that you can reach with obsidian portals. depends = stairs, default -optional_depends = moreblocks, mesecons, loot, dungeon_loot, doc_basics, fire, climate_api +optional_depends = moreblocks, mesecons, loot, dungeon_loot, doc_basics, fire, climate_api, ethereal