Started work on the Blast furnace

This commit is contained in:
modmuss50 2015-04-28 18:23:48 +01:00
parent 1238f2d5a6
commit 72ec08f069
2 changed files with 154 additions and 6 deletions

View file

@ -26,11 +26,11 @@ public class ContainerBlastFurnace extends TechRebornContainer {
this.player = player;
// input
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 0, 56, 25));
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 1, 56, 43));
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 0, 56, 25));//Input 1
this.addSlotToContainer(new Slot(tileblastfurnace.inventory, 1, 56, 43));//Input 2
// outputs
this.addSlotToContainer(new SlotOutput(tileblastfurnace.inventory, 2,
116, 35));
this.addSlotToContainer(new SlotOutput(tileblastfurnace.inventory, 2, 116, 35));//Output 1
this.addSlotToContainer(new SlotOutput(tileblastfurnace.inventory, 3, 116, 53));//Output 2
int i;