Skip to content
Snippets Groups Projects
Commit 467de998 authored by TenPlus1's avatar TenPlus1
Browse files

quick fix for birch and big tree saplings growing on green grass

parent 85256ab9
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,8 @@ ethereal.grow_sapling = function (pos, node)
ethereal.grow_yellow_tree(pos)
elseif node.name == "ethereal:big_tree_sapling"
and under == "ethereal:green_dirt" then
--and under == "ethereal:green_dirt" then
and under == "default:dirt_with_grass" then
ethereal.grow_big_tree(pos)
elseif node.name == "ethereal:banana_tree_sapling"
......@@ -202,7 +203,8 @@ ethereal.grow_sapling = function (pos, node)
ethereal.grow_bamboo_tree(pos)
elseif node.name == "ethereal:birch_sapling"
and under == "ethereal:green_dirt" then
--and under == "ethereal:green_dirt" then
and under == "default:dirt_with_grass" then
ethereal.grow_birch_tree(pos)
end
......@@ -212,8 +214,8 @@ end
minetest.register_abm({
label = "Ethereal grow sapling",
nodenames = {"group:ethereal_sapling"},
interval = 10,
chance = 50,
interval = 1,--10,
chance = 1,--50,
catch_up = false,
action = function(pos, node)
......
textures/willow_twig_.png

1.37 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment