Revert "Testing alternative chicken acquisition methods"

This reverts commit 5fcd598067.
This commit is contained in:
Salt 2023-12-01 12:03:13 -06:00
parent 5fcd598067
commit 53fe827e4d

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
turtle.select(1) for i = 1, 16, 1 do
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.