Revert "Testing alternative chicken acquisition methods"

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

@@ -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.suckUp() turtle.select(i)
-- Then we select the next slot and bop the breeder turtle.suckUp()
turtle.select(2) end
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.