Added battery and upgrade slots to chemical reactor

This commit is contained in:
Gig 2015-05-15 17:46:03 +01:00
parent 83259b0615
commit f9074e5b37
2 changed files with 8 additions and 2 deletions

View file

@ -32,7 +32,13 @@ public class ContainerChemicalReactor extends TechRebornContainer {
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 1, 90, 21));
// outputs
this.addSlotToContainer(new SlotOutput(tilechemicalReactor.inventory, 2, 80, 51));
//TODO battery Slot
// battery
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 3, 8, 51));
// upgrades
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 4, 152, 8));
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 5, 152, 26));
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 6, 152, 44));
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 7, 152, 62));
int i;

View file

@ -15,7 +15,7 @@ public class TileChemicalReactor extends TileMachineBase implements IWrenchable,
public int tickTime;
public BasicSink energy;
public Inventory inventory = new Inventory(3, "TileChemicalReactor", 64);
public Inventory inventory = new Inventory(8, "TileChemicalReactor", 64);
public RecipeCrafter crafter;
public TileChemicalReactor()