summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-08-03 19:41:22 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2017-08-03 19:41:22 +0100
commitd31010216ad2e707b811ebcb95bfe184190441b8 (patch)
tree94e063541a28c43a4766893e294b5ea527d7a89d
parent2312319fe3394c1489c3eb422a291df35d4b3073 (diff)
pathfinding level 2 liquid drop fixed
-rw-r--r--api.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/api.lua b/api.lua
index c5262d1..9b80678 100644
--- a/api.lua
+++ b/api.lua
@@ -1080,7 +1080,8 @@ local smart_mobs = function(self, s, p, dist, dtime)
and node1 ~= "ignore"
and ndef1
and not ndef1.groups.level
- and not ndef1.groups.unbreakable then
+ and not ndef1.groups.unbreakable
+ and not ndef1.groups.liquid then
minetest.set_node(s, {name = "air"})
minetest.add_item(s, ItemStack(node1))
@@ -1109,7 +1110,8 @@ local smart_mobs = function(self, s, p, dist, dtime)
and node1 ~= "ignore"
and ndef1
and not ndef1.groups.level
- and not ndef1.groups.unbreakable then
+ and not ndef1.groups.unbreakable
+ and not ndef1.groups.liquid then
minetest.add_item(p1, ItemStack(node1))
minetest.set_node(p1, {name = "air"})
@@ -1123,7 +1125,8 @@ local smart_mobs = function(self, s, p, dist, dtime)
and node1 ~= "ignore"
and ndef1
and not ndef1.groups.level
- and not ndef1.groups.unbreakable then
+ and not ndef1.groups.unbreakable
+ and not ndef1.groups.liquid then
minetest.add_item(p1, ItemStack(node1))
minetest.set_node(p1, {name = "air"})