Added Ae2 and Logistic pipe support to Quantum Chest
This commit is contained in:
parent
e02b1518d2
commit
61120ed30b
3 changed files with 63 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue