perky / Minechem

Add chemistry to minecraft.
http://www.minecraftforum.net/topic/988773-11-minechem-v15/
23 stars 7 forks source link

Synthesizer not accept items from pipe unless same kind item in internal strage. #67

Closed esetomo closed 11 years ago

esetomo commented 11 years ago

It seems that intarnal strage acts as real crafting slots.

Rushmead commented 11 years ago

Internal Storage?

esetomo commented 11 years ago

Yes.

TileEntitySynthesis.java:

public int addItem(ItemStack stack, boolean doAdd, ForgeDirection direction) { // add items in round robin fashion to input slots (as the autobench does) return new TransactorSimple(storageInventory).add(stack, direction, doAdd).stackSize; }

Synthesizer add item to Internal Storage as the autobench does. If Internal Storage is empty, Synthesizer doesn't accept any item.

perky commented 11 years ago

This has already been fixed.