forked from VoxeLibre/VoxeLibre
Create drips only below solids below liquids
This commit is contained in:
parent
0ae946a920
commit
d13fe532c5
|
@ -91,8 +91,9 @@ minetest.register_abm(
|
||||||
interval = 2,
|
interval = 2,
|
||||||
chance = 22,
|
chance = 22,
|
||||||
action = function(pos)
|
action = function(pos)
|
||||||
if minetest.get_node({x=pos.x, y=pos.y -1, z=pos.z}).name == "air" and
|
if minetest.get_item_group(minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z}).name, "water") ~= 0 and
|
||||||
minetest.get_node({x=pos.x, y=pos.y -2, z=pos.z}).name == "air" then
|
minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == "air" and
|
||||||
|
minetest.get_node({x=pos.x, y=pos.y-2, z=pos.z}).name == "air" then
|
||||||
local i = math.random(-45,45) / 100
|
local i = math.random(-45,45) / 100
|
||||||
minetest.add_entity({x=pos.x + i, y=pos.y - 0.501, z=pos.z + i}, "drippingwater:drop_water")
|
minetest.add_entity({x=pos.x + i, y=pos.y - 0.501, z=pos.z + i}, "drippingwater:drop_water")
|
||||||
end
|
end
|
||||||
|
@ -109,8 +110,9 @@ minetest.register_abm(
|
||||||
interval = 2,
|
interval = 2,
|
||||||
chance = 22,
|
chance = 22,
|
||||||
action = function(pos)
|
action = function(pos)
|
||||||
if minetest.get_node({x=pos.x, y=pos.y -1, z=pos.z}).name == "air" and
|
if minetest.get_item_group(minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z}).name, "lava") ~= 0 and
|
||||||
minetest.get_node({x=pos.x, y=pos.y -2, z=pos.z}).name == "air" then
|
minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == "air" and
|
||||||
|
minetest.get_node({x=pos.x, y=pos.y-2, z=pos.z}).name == "air" then
|
||||||
local i = math.random(-45,45) / 100
|
local i = math.random(-45,45) / 100
|
||||||
minetest.add_entity({x=pos.x + i, y=pos.y - 0.501, z=pos.z + i}, "drippingwater:drop_lava")
|
minetest.add_entity({x=pos.x + i, y=pos.y - 0.501, z=pos.z + i}, "drippingwater:drop_lava")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue