diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-01-12 10:44:35 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-01-12 10:44:35 +0000 |
commit | 4add54dbd24c820ad2da6b658044186b2818da3e (patch) | |
tree | a0fa5d8ef7280f002f586776da4c80420e4aac31 /water.lua | |
parent | eab8b175d3917bae7ccd26992ca34cd73ccafbeb (diff) |
new dirt top textures (thanks RQWorldblender) and falling node check for 0.4.14/15
Diffstat (limited to 'water.lua')
-rw-r--r-- | water.lua | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -74,7 +74,7 @@ minetest.register_abm({ }, neighbors = { "fire:basic_fire", "default:lava_source", "default:lava_flowing", - "default:furnace_active", "default:torch" + "default:furnace_active", "group:torch", "default:torch" }, interval = 5, chance = 4, @@ -100,8 +100,7 @@ minetest.register_abm({ minetest.swap_node(pos, {name = "default:dirt_with_grass"}) end - nodeupdate(pos) - --minetest.check_for_falling(pos) + ethereal.check_falling(pos) end, }) |