http://pastebin.com/wYf0prC0
This line
if y == yx then print(y .. ' equals ' .. yx) t.digDown() t.down() else print(y .. ' does not equal ' .. yx) endends up outputting
1 does not equal 2 2 does not equal 2If I change it to
if not y == yx then print(y .. ' does not equal ' .. yx) t.digDown() t.down() else print(y .. ' equals ' .. yx) endit'll say
1 equals 2 2 equals 2












