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