mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-12-26 19:00:36 +01:00
eliminate mapgen lava and put in lava veins instead
This commit is contained in:
parent
570e934d29
commit
c00bd7152c
23
init.lua
23
init.lua
@ -2,6 +2,8 @@ dfcaverns = {}
|
|||||||
|
|
||||||
subterrane.get_param2_data = true
|
subterrane.get_param2_data = true
|
||||||
|
|
||||||
|
minetest.register_alias_force("mapgen_lava_source", "air")
|
||||||
|
|
||||||
--grab a shorthand for the filepath of the mod
|
--grab a shorthand for the filepath of the mod
|
||||||
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
||||||
|
|
||||||
@ -37,3 +39,24 @@ minetest.register_abm({
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "vein",
|
||||||
|
ore = "default:lava_source",
|
||||||
|
wherein = "default:stone",
|
||||||
|
column_height_min = 2,
|
||||||
|
column_height_max = 6,
|
||||||
|
height_min = -31000,
|
||||||
|
height_max = 31000,
|
||||||
|
noise_threshold = 0.9,
|
||||||
|
noise_params = {
|
||||||
|
offset = 0,
|
||||||
|
scale = 3,
|
||||||
|
spread = {x=400, y=800, z=400},
|
||||||
|
seed = 25391,
|
||||||
|
octaves = 4,
|
||||||
|
persist = 0.5,
|
||||||
|
flags = "eased",
|
||||||
|
},
|
||||||
|
random_factor = 0,
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user