Go to file
Olivier Dragon 697b1b5f76 Add check for doors
which seems to not always be there even if it is (mtg)
2022-01-22 15:15:15 -05:00
locale Add maple wood fence gate 2020-08-24 01:05:24 -04:00
schematics
textures support for drawers mod 2018-05-13 14:15:29 +03:00
.gitattributes Add .git* filetypes as text 2020-08-14 23:33:20 -04:00
LICENSE Create LICENSE 2018-07-01 21:17:48 +03:00
README.md Change image path from absolute to relative 2020-08-14 22:16:30 -04:00
crafts.lua Add check for doors 2022-01-22 15:15:15 -05:00
decorations.lua Add missing local translator S() 2020-08-23 23:24:17 -04:00
depends.txt +pkarcs 2018-06-06 01:42:00 +03:00
init.lua Split init into different modules 2020-08-23 23:03:40 -04:00
intermod.lua Add check for doors 2022-01-22 15:15:15 -05:00
maple_in_the_wild.jpg readme 2018-04-29 23:22:02 +03:00
mod.conf Adding mod.conf 2020-08-15 00:50:24 -04:00
nodes.lua Increase rarity of sampling 2020-08-23 23:46:16 -04:00
trees.lua Split init into different modules 2020-08-23 23:03:40 -04:00
update_translation.pl Fix translation script 2020-08-24 00:43:40 -04:00

README.md

Maple

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 tree

Maple Tree

Bonemeal

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

Technic chainsaw

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

Stairs and slabs

Maple tries to register fancy wooden shapes for maple wood with stairs or moreblocks.

Drawers

If storage drawers mod is available, maple registers the corresponding assortment of drawers.

Arcs

If pkarcs (simple arcs) mod is found, maple arcs are registered.