mirror of
https://github.com/D00Med/moreplants.git
synced 2025-01-09 17:30:24 +01:00
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
|
--decorations
|
||||||
if minetest.get_mapgen_params().mgname ~= "v6" then
|
if minetest.get_mapgen_params().mgname ~= "v6" then
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
@ -866,8 +873,8 @@ nodenames = {
|
|||||||
"default:stone",
|
"default:stone",
|
||||||
},
|
},
|
||||||
neighbors = {"air"},
|
neighbors = {"air"},
|
||||||
interval = 300,
|
interval = 500,
|
||||||
chance = 100,
|
chance = 200,
|
||||||
action = function(pos, node)
|
action = function(pos, node)
|
||||||
local top_pos = {x=pos.x, y=pos.y+1, z=pos.z}
|
local top_pos = {x=pos.x, y=pos.y+1, z=pos.z}
|
||||||
if minetest.get_node(top_pos).name == "air" then
|
if minetest.get_node(top_pos).name == "air" then
|
||||||
|
Loading…
Reference in New Issue
Block a user