Changed al place functions were the same. Had to rename them
This commit is contained in:
parent
cf41150a10
commit
ffc6d10401
@ -49,7 +49,7 @@ end
|
||||
|
||||
|
||||
--place_row() places n block in a row
|
||||
function place_column(amount, material)
|
||||
function place_row(amount, material)
|
||||
turtle.turnRight()
|
||||
turtle.forward()
|
||||
turtle.turnLeft()
|
||||
@ -62,7 +62,7 @@ end
|
||||
|
||||
|
||||
--place_triangle() places a trinagular block
|
||||
function place_column(material)
|
||||
function place_triangle(material)
|
||||
turtle.turnRight()
|
||||
turtle.forward()
|
||||
turtle.turnLeft()
|
||||
|
@ -40,7 +40,8 @@ function count_inventory(minecraft_id)
|
||||
local total = 0
|
||||
|
||||
for slot = 1, 16 do
|
||||
if turtle.getItemDetail(slot) == 'minecraft:' .. minecraft_id then
|
||||
item = turtle.getItemDetail(slot)
|
||||
if item ~= nil and item['name'] == 'minecraft:' .. minecraft_id then
|
||||
total = total + turtle.getItem(slot)
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user