Testing alternative chicken acquisition methods

This commit is contained in:
Salt 2023-12-01 12:00:45 -06:00
parent 445602b60d
commit 5fcd598067

View File

@ -7,10 +7,10 @@ function placeBreeder()
print('Initializing breeder...')
breeder = peripheral.wrap('top')
-- This ensures that we have the new generation chicken in slot 1
for i = 1, 16, 1 do
turtle.select(i)
turtle.suckUp()
end
turtle.select(1)
turtle.suckUp()
-- Then we select the next slot and bop the breeder
turtle.select(2)
turtle.digUp()
-- Why are we discarding slot 2? Because, by design, it MUST be the trash
-- chicken from the last generation.