diff options
| author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-30 23:31:23 +0300 | 
|---|---|---|
| committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-30 23:31:23 +0300 | 
| commit | 78eeb55cf6f29c074147836e8021c154b52e2a05 (patch) | |
| tree | 52245b0c01f60052477400a1841d440ae413d69a | |
| parent | d16f5b00fe7ff7ff938dedc83f4f1cd8286cbd7d (diff) | |
instructions for chainsaw support
| -rw-r--r-- | README.md | 14 | 
1 files changed, 14 insertions, 0 deletions
| @@ -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  ```
\ No newline at end of file | 
