mirror of
https://github.com/mt-mods/moretrees.git
synced 2024-11-05 09:50:34 +01:00
Added tweak to make sure planted saplings only grow on the same surfaces as
they would normally spawn on.
This commit is contained in:
parent
70940adb50
commit
2fff77f195
8
init.lua
8
init.lua
|
@ -68,6 +68,12 @@ for i in ipairs(simple_trees) do
|
|||
local tree_name = trees[i][1]
|
||||
local tree_model = tree_name.."_model"
|
||||
dbg(dump(moretrees[tree_model]))
|
||||
|
||||
if tree_model="palm_model" then
|
||||
grow_nodes = {"default:sand"}
|
||||
else
|
||||
grow_nodes = {"default:dirt_with_grass"}
|
||||
end
|
||||
|
||||
plantslib:grow_plants(
|
||||
sapling_interval,
|
||||
|
@ -75,7 +81,7 @@ for i in ipairs(simple_trees) do
|
|||
"moretrees:"..tree_name.."_sapling",
|
||||
nil,
|
||||
nil,
|
||||
nil,
|
||||
grow_nodes,
|
||||
nil,
|
||||
nil,
|
||||
nil,
|
||||
|
|
Loading…
Reference in New Issue
Block a user