Added battery and upgrade slots to chemical reactor
This commit is contained in:
parent
83259b0615
commit
f9074e5b37
2 changed files with 8 additions and 2 deletions
|
@ -32,7 +32,13 @@ public class ContainerChemicalReactor extends TechRebornContainer {
|
||||||
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 1, 90, 21));
|
this.addSlotToContainer(new Slot(tilechemicalReactor.inventory, 1, 90, 21));
|
||||||
// outputs
|
// outputs
|
||||||
this.addSlotToContainer(new SlotOutput(tilechemicalReactor.inventory, 2, 80, 51));
|
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;
|
int i;
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ public class TileChemicalReactor extends TileMachineBase implements IWrenchable,
|
||||||
|
|
||||||
public int tickTime;
|
public int tickTime;
|
||||||
public BasicSink energy;
|
public BasicSink energy;
|
||||||
public Inventory inventory = new Inventory(3, "TileChemicalReactor", 64);
|
public Inventory inventory = new Inventory(8, "TileChemicalReactor", 64);
|
||||||
public RecipeCrafter crafter;
|
public RecipeCrafter crafter;
|
||||||
|
|
||||||
public TileChemicalReactor()
|
public TileChemicalReactor()
|
||||||
|
|
Loading…
Add table
Reference in a new issue