forked from mtcontrib/moreplants
Minor improvements
>paper can be crafted from weeds >Lowered the chance of mushrooms/cavefungus spawning
This commit is contained in:
parent
677030ccba
commit
5340141f9b
11
init.lua
11
init.lua
@ -611,6 +611,13 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:paper 1",
|
||||
recipe = {
|
||||
{"moreplants:weed", "moreplants:weed", "moreplants:weed"},
|
||||
}
|
||||
})
|
||||
|
||||
--decorations
|
||||
if minetest.get_mapgen_params().mgname ~= "v6" then
|
||||
minetest.register_decoration({
|
||||
@ -866,8 +873,8 @@ nodenames = {
|
||||
"default:stone",
|
||||
},
|
||||
neighbors = {"air"},
|
||||
interval = 300,
|
||||
chance = 100,
|
||||
interval = 500,
|
||||
chance = 200,
|
||||
action = function(pos, node)
|
||||
local top_pos = {x=pos.x, y=pos.y+1, z=pos.z}
|
||||
if minetest.get_node(top_pos).name == "air" then
|
||||
|
Loading…
Reference in New Issue
Block a user