Add grinder recipes

This commit is contained in:
mezz 2015-12-31 00:56:09 -08:00
parent c187f931ce
commit 5addee32e6
14 changed files with 205 additions and 13 deletions

View file

@ -24,10 +24,11 @@ import techreborn.lib.Reference;
import techreborn.powerSystem.TilePowerAcceptor;
public class TileGrinder extends TilePowerAcceptor implements IWrenchable, IFluidHandler, IInventory, ISidedInventory {
public static final int TANK_CAPACITY = 16000;
public int tickTime;
public Inventory inventory = new Inventory(6, "TileGrinder", 64, this);
public Tank tank = new Tank("TileGrinder", 16000, this);
public Tank tank = new Tank("TileGrinder", TANK_CAPACITY, this);
public RecipeCrafter crafter;
public int connectionStatus;