summaryrefslogtreecommitdiff
path: root/dirt.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2015-11-15 21:17:28 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2015-11-15 21:17:28 +0000
commitd025784f3096bced6f0e7384b2c4d3c8a994cdac (patch)
tree004b60e5fbb1cb2eb24b90f545ea0db9c83837fb /dirt.lua
parentbc2b58ab8eb7593bd40abb5b6bf7ad0eded8a3d4 (diff)
Speed up specific node checks
Diffstat (limited to 'dirt.lua')
-rw-r--r--dirt.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/dirt.lua b/dirt.lua
index 62792a5..3d5fa8e 100644
--- a/dirt.lua
+++ b/dirt.lua
@@ -73,7 +73,7 @@ minetest.register_abm({
local count_grasses = {}
local curr_max = 0
local curr_type = "ethereal:green_dirt" -- fallback
- local positions = minetest.find_nodes_in_area(
+ local positions = minetest.find_nodes_in_area_under_air(
{x = (pos.x - 2), y = (pos.y - 1), z = (pos.z - 2)},
{x = (pos.x + 2), y = (pos.y + 1), z = (pos.z + 2)},
"group:ethereal_grass")