Add industrial sawmill recipes

This commit is contained in:
mezz 2015-12-31 02:11:24 -08:00
parent 123042a069
commit ad0b45cd2a
7 changed files with 173 additions and 4 deletions

View file

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