Added tweak to make sure planted saplings only grow on the same surfaces as

they would normally spawn on.
This commit is contained in:
Vanessa Ezekowitz 2013-01-20 14:15:33 -05:00
parent 70940adb50
commit 2fff77f195
1 changed files with 7 additions and 1 deletions

View File

@ -69,13 +69,19 @@ for i in ipairs(simple_trees) do
local tree_model = tree_name.."_model" local tree_model = tree_name.."_model"
dbg(dump(moretrees[tree_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( plantslib:grow_plants(
sapling_interval, sapling_interval,
sapling_chance, sapling_chance,
"moretrees:"..tree_name.."_sapling", "moretrees:"..tree_name.."_sapling",
nil, nil,
nil, nil,
nil, grow_nodes,
nil, nil,
nil, nil,
nil, nil,