Hoppers/Pipes pull from input slots on Breeder
zerofall opened this issue ยท 2 comments
When I try to extract the output "bred" chickens from the Breeder using a Hopper or pipes, it pulls the "breeding" chickens out of the input slots.
Modpack: Stoneblock 3, 1.0.0
Im guessing this would fix it?
BlockEntityRoost.java
@NotNull
@Override
public ItemStack extractItem(int slot, int amount, boolean simulate)
{
// Slots 0 and 1 are for breeding chickens, Slot 2 is for seeds. Don't extract these.
if(slot <= 2) return ItemStack.EMPTY;
return super.extractItem(slot, amount, simulate);
}