diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-01-08 21:10:11 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-01-08 21:10:11 +0000 |
commit | caeb1704202e0a525038d0edee32cf2d94634abe (patch) | |
tree | 1af5d8934f6af4d90e80dea73d1b8a46a34af738 /flowers.lua | |
parent | 589e1a50d9873d00f45dfce0e1a913c8293e6f66 (diff) |
bugfix
Diffstat (limited to 'flowers.lua')
-rw-r--r-- | flowers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowers.lua b/flowers.lua index 0b340eb..a955349 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 > 10 and #frost > 10 then + if #crystal > 7 and #frost > 7 then local ppos = crystal[1] ppos.y = ppos.y - 1 local nod = minetest.get_node(ppos).name |