Code tweaks

master
tenplus1 2015-05-12 09:46:26 +01:00
parent 787a260220
commit 2befb9a980
1 changed files with 5 additions and 4 deletions

View File

@ -55,9 +55,10 @@ minetest.register_abm({
interval = 15,
chance = 2,
action = function(pos, node)
local pos0 = {x=pos.x-1,y=pos.y-1,z=pos.z-1}
local pos1 = {x=pos.x+1,y=pos.y+1,z=pos.z+1}
local water = minetest.find_nodes_in_area(pos0, pos1, "default:water_source")
local water = 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:water_source")
if water then
minetest.set_node(water[1], {name="default:ice"})
end