instructions for chainsaw support

This commit is contained in:
h-v-smacker 2018-04-30 23:31:23 +03:00
parent d16f5b00fe
commit 78eeb55cf6

View File

@ -19,4 +19,18 @@ if minetest.get_modpath("maple") then
{"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
```