CreeperHost Presents Chickens

CreeperHost Presents Chickens

2M Downloads

Hoppers/Pipes pull from input slots on Breeder

zerofall opened this issue ยท 2 comments

commented

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

commented

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);
}
commented

Fixed in .23, Should show up on Curse soon