Minor improvements

>paper can be crafted from weeds
>Lowered the chance of mushrooms/cavefungus spawning
This commit is contained in:
D00Med 2016-08-12 10:40:03 +10:00
parent 677030ccba
commit 5340141f9b
1 changed files with 9 additions and 2 deletions

View File

@ -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