Enable fluids and stop forcing mapgen insertion.
This commit is contained in:
parent
297b41a055
commit
bdca26220d
1 changed files with 6 additions and 5 deletions
11
mapgen.lua
11
mapgen.lua
|
@ -68,8 +68,8 @@ fun_caves_mod.cave_biomes = {
|
||||||
biome_val_high = 99,
|
biome_val_high = 99,
|
||||||
ceiling_node = 'fun_caves:hot_cobble',
|
ceiling_node = 'fun_caves:hot_cobble',
|
||||||
floor_node = 'fun_caves:hot_cobble',
|
floor_node = 'fun_caves:hot_cobble',
|
||||||
--fluid = 'default:lava_source',
|
fluid = 'default:lava_source',
|
||||||
--fluid_chance = 300,
|
fluid_chance = 300,
|
||||||
stalagmite = fun_caves_mod.hot_spikes,
|
stalagmite = fun_caves_mod.hot_spikes,
|
||||||
stalagmite_chance = 50,
|
stalagmite_chance = 50,
|
||||||
stone_depth = 1,
|
stone_depth = 1,
|
||||||
|
@ -129,8 +129,8 @@ fun_caves_mod.cave_biomes = {
|
||||||
deco = 'fun_caves:glowing_fungal_stone',
|
deco = 'fun_caves:glowing_fungal_stone',
|
||||||
deco_chance = 50,
|
deco_chance = 50,
|
||||||
floor_node = 'fun_caves:stone_with_moss',
|
floor_node = 'fun_caves:stone_with_moss',
|
||||||
--fluid = 'default:water_source',
|
fluid = 'default:water_source',
|
||||||
--fluid_chance = 300,
|
fluid_chance = 300,
|
||||||
stalactite = 'fun_caves:stalactite_mossy',
|
stalactite = 'fun_caves:stalactite_mossy',
|
||||||
stalactite_chance = 12,
|
stalactite_chance = 12,
|
||||||
stalagmite = 'fun_caves:stalagmite_mossy',
|
stalagmite = 'fun_caves:stalagmite_mossy',
|
||||||
|
@ -268,4 +268,5 @@ end
|
||||||
|
|
||||||
|
|
||||||
-- Inserting helps to ensure that fun_caves_mod operates first.
|
-- Inserting helps to ensure that fun_caves_mod operates first.
|
||||||
table.insert(minetest.registered_on_generateds, 1, pgenerate)
|
--table.insert(minetest.registered_on_generateds, 1, pgenerate)
|
||||||
|
minetest.register_on_generated(pgenerate)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue