Added Ae2 and Logistic pipe support to Quantum Chest

This commit is contained in:
gigabit101 2015-09-07 20:48:35 +01:00
parent e02b1518d2
commit 61120ed30b
3 changed files with 63 additions and 3 deletions

View file

@ -39,8 +39,8 @@ public class GuiQuantumChest extends GuiContainer {
I18n.format("container.inventory", new Object[0]), 8,
this.ySize - 96 + 2, 4210752);
this.fontRendererObj.drawString("Amount", 10, 20, 16448255);
if (tile.storedItem != null)
this.fontRendererObj.drawString(tile.storedItem.stackSize + "", 10,
if (tile.storedItem != null && tile.getStackInSlot(1) !=null)
this.fontRendererObj.drawString(tile.storedItem.stackSize + tile.getStackInSlot(1).stackSize + "", 10,
30, 16448255);
}
}