diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-01-09 14:36:01 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-01-09 14:36:01 +0000 |
commit | f128a34985a36f67b65bb5ede4cf2970ccd874ba (patch) | |
tree | e2b64f0f5cd0098dc5370d30a969f6461f4cdcb2 | |
parent | 34e7b1637006f0c21d26040a24ec93cde634243e (diff) |
bugfix
-rw-r--r-- | flowers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowers.lua b/flowers.lua index e975255..d52e36a 100644 --- a/flowers.lua +++ b/flowers.lua @@ -19,7 +19,7 @@ minetest.register_abm({ local crystal = minetest.find_nodes_in_area(pos0, pos1, {"ethereal:crystalgrass"}) local frost = minetest.find_nodes_in_area(pos0, pos1, {"ethereal:frost_tree"}) - if #crystal > 5 and #frost > 7 then + if #crystal > 6 and #frost > 7 then local ppos = crystal[1] ppos.y = ppos.y - 1 local nod = minetest.get_node(ppos).name |