summaryrefslogtreecommitdiff
path: root/README.md
blob: 4c137fc8ece9945c66033bfb44ffd336994fa3be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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](https://github.com/h-v-smacker/maple/blob/master/maple_in_the_wild.jpg)

## Bonemeal

If you are using the bonemeal mod, 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
```