Fixed some issues with the Industrial Electrolyzer
This commit is contained in:
parent
462aa20710
commit
663b5f2f75
1 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ public class TileIndustrialElectrolyzer extends TileMachineBase implements IWren
|
||||||
public TileIndustrialElectrolyzer()
|
public TileIndustrialElectrolyzer()
|
||||||
{
|
{
|
||||||
//TODO configs
|
//TODO configs
|
||||||
energy = new BasicSink(this, 1000, 2);
|
energy = new BasicSink(this, 10000, 2);
|
||||||
//Input slots
|
//Input slots
|
||||||
int[] inputs = new int[2];
|
int[] inputs = new int[2];
|
||||||
inputs[0] = 0;
|
inputs[0] = 0;
|
||||||
|
@ -40,7 +40,7 @@ public class TileIndustrialElectrolyzer extends TileMachineBase implements IWren
|
||||||
outputs[1] = 3;
|
outputs[1] = 3;
|
||||||
outputs[2] = 4;
|
outputs[2] = 4;
|
||||||
outputs[3] = 5;
|
outputs[3] = 5;
|
||||||
crafter = new RecipeCrafter("industrialelectrolyzerRecipe", this, energy, 2, 4, inventory, inputs, outputs);
|
crafter = new RecipeCrafter("industrialElectrolyzerRecipe", this, energy, 2, 4, inventory, inputs, outputs);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -49,7 +49,7 @@ public class TileIndustrialElectrolyzer extends TileMachineBase implements IWren
|
||||||
super.updateEntity();
|
super.updateEntity();
|
||||||
energy.updateEntity();
|
energy.updateEntity();
|
||||||
crafter.updateEntity();
|
crafter.updateEntity();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
|
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue