Enabled Grinder to take an extra input in place of fluidstack

This commit is contained in:
Tntrololol 2015-05-24 13:51:41 -05:00
parent 2d17902d03
commit 0bb98b1781
3 changed files with 9 additions and 5 deletions
src/main/java/techreborn/tiles

View file

@ -24,11 +24,11 @@ public class TileGrinder extends TileMachineBase implements IWrenchable, IEnergy
public TileGrinder() {
//TODO configs
energy = new BasicSink(this, 1000,
ConfigTechReborn.CentrifugeTier);
energy = new BasicSink(this, 1000, ConfigTechReborn.CentrifugeTier);
int[] inputs = new int[1];
int[] inputs = new int[2];
inputs[0] = 0;
inputs[1] = 1;
int[] outputs = new int[4];
outputs[0] = 2;
outputs[1] = 3;