diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-25 20:58:25 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-25 20:58:25 +0100 |
commit | b7cafd19a359be116c81da68cc6eed4feccb70f2 (patch) | |
tree | 8f37089bcf7aef1a68b56c96de95dc6e234321d3 /init.lua | |
parent | e5d4bb9c87ed4045c5d033140fad7ec7c5542798 (diff) |
whoops, fixed number bug
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -422,7 +422,7 @@ function farming.plant_growth_timer(pos, elapsed, node_name) else local under = minetest.get_node({ x = pos.x, y = pos.y - 1, z = pos.z }) - if minetest.get_item_group(under.name, "soil") < 2 then + if minetest.get_item_group(under.name, "soil") < 3 then return true end end |