diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-09-05 14:49:44 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-09-05 14:49:44 +0100 |
commit | 05688474bdd20b01679ead49a60e44bf6e3c164d (patch) | |
tree | 1e4cbf209d8aef2bab6185e178dfbc70d6b1dc88 | |
parent | b7130d09d276a721be4c5a287b13092d01acc828 (diff) |
Updated pine sapling snow check
-rw-r--r-- | bonemeal.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bonemeal.lua b/bonemeal.lua index 34d244f..0c14c0c 100644 --- a/bonemeal.lua +++ b/bonemeal.lua @@ -192,10 +192,8 @@ local function growth(pointed_thing) elseif node.name == "default:pine_sapling"
and enough_height(pos, 11) then
- if #minetest.find_nodes_in_area(
- {x = pos.x - 1, y = pos.y - 1, z = pos.z - 1},
- {x = pos.x + 1, y = pos.y + 1, z = pos.z + 1},
- {"default:snow", "default:snowblock", "default:dirt_with_snow"}) > 0 then
+ if minetest.find_node_near(pos, 1,
+ {"default:snow", "default:snowblock", "default:dirt_with_snow"}) then
default.grow_new_snowy_pine_tree(pos)
else
|