Olivier Dragon 697b1b5f76 Add check for doors | 2 years ago | |
---|---|---|
locale | 4 years ago | |
schematics | 6 years ago | |
textures | 6 years ago | |
.gitattributes | 4 years ago | |
LICENSE | 6 years ago | |
README.md | 4 years ago | |
crafts.lua | 2 years ago | |
decorations.lua | 4 years ago | |
depends.txt | 6 years ago | |
init.lua | 4 years ago | |
intermod.lua | 2 years ago | |
maple_in_the_wild.jpg | 6 years ago | |
mod.conf | 4 years ago | |
nodes.lua | 4 years ago | |
trees.lua | 4 years ago | |
update_translation.pl | 4 years ago |
Maple Tree for Minetest by ExeterDad
This mod adds a maple tree to the minetest game. Originally written for the Hometown server (http://hometownserver.com/) by ExeterDad (https://forum.minetest.net/memberlist.php?mode=viewprofile&u=10544).
The mod now registers itself with the bonemeal API, and saplings should be recognized automatically.
If you are using the bonemeal mod, you can add this to mods.lua to enable maple support:
if minetest.get_modpath("maple") then
bonemeal:add_sapling({
{"maple:maple_sapling", maple.grow_sapling, "soil"},
})
end
Add this to technic/technic/tools/chainsaw.lua to enable support for maple trees for the chainsaw tool:
-- Support maple
if minetest.get_modpath("maple") then
timber_nodenames["maple:maple_tree"] = true
if chainsaw_leaves then
timber_nodenames["maple:maple_leaves"] = true
end
end
Maple tries to register fancy wooden shapes for maple wood with stairs or moreblocks.
If storage drawers mod is available, maple registers the corresponding assortment of drawers.
If pkarcs (simple arcs) mod is found, maple arcs are registered.