Nothing to see here

This commit is contained in:
Gig 2015-04-25 22:16:23 +01:00
parent bc2bf26fc0
commit ea99f354ad
3 changed files with 14 additions and 1 deletions

View file

@ -12,6 +12,7 @@ public class TileAlloySmelter extends TileMachineBase implements IWrenchable {
public int tickTime;
public BasicSink energy;
public Inventory inventory = new Inventory(3, "TileAlloySmelter", 64);
@Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)

View file

@ -21,8 +21,11 @@ public class TileQuantumChest extends TileMachineBase implements IInventory,
// Slot 0 = Input
// Slot 1 = Output
// Slot 2 = Fake Item
int storage = (int) Double.MAX_VALUE;
public Inventory inventory = new Inventory(3, "TileQuantumChest",
Integer.MAX_VALUE);
storage);
public ItemStack storedItem;