Update init.lua

This commit is contained in:
Robbie Ferguson 2016-05-19 20:43:36 -04:00
parent c9325322a8
commit 33c81b3d72

@ -41,7 +41,7 @@ local function find_air(pos,player)
local top = {pos.x, pos.y+1, pos.z}
local mid_node = minetest.get_node(mid)
local top_node = minetest.get_node(top)
while
for
mid_node.name ~= "air" or mid_node.name ~= "ignore" and
top_node.name ~= "air" or top_node.name ~= "ignore" do
pos.y = pos.y +2