forked from minetest-mods/nether
Compare commits
6 Commits
96c3c01521
...
e3e793d5be
Author | SHA1 | Date | |
---|---|---|---|
e3e793d5be | |||
96ef16bf2a | |||
44f3912add | |||
fb3c358f74 | |||
ecce6e27c9 | |||
3f4b014298 |
2
init.lua
2
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)
|
||||
|
2
mod.conf
2
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
|
||||
|
@ -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 = {{
|
||||
|
@ -2007,7 +2007,8 @@ local wormhole_nodedef_default = {
|
||||
a = 160, r = 128, g = 0, b = 80
|
||||
},
|
||||
sunlight_propagates = true,
|
||||
use_texture_alpha = "blend",
|
||||
use_texture_alpha = minetest.features.use_texture_alpha_string_modes
|
||||
and "blend" or true,
|
||||
walkable = false,
|
||||
diggable = false,
|
||||
pointable = false,
|
||||
|
Reference in New Issue
Block a user