Fixed Lathe recipe handler

This commit is contained in:
Gig 2015-05-11 23:44:26 +01:00
parent c9c5adf4ab
commit 2ab94e6030
3 changed files with 5 additions and 5 deletions

View file

@ -26,8 +26,8 @@ public class TileLathe extends TileMachineBase implements IWrenchable, IEnergyTi
int[] inputs = new int[1];
inputs[0] = 0;
int[] outputs = new int[1];
outputs[0] = 2;
crafter = new RecipeCrafter("latheRecipe", this, energy, 2, 2, inventory, inputs, outputs);
outputs[0] = 1;
crafter = new RecipeCrafter("latheRecipe", this, energy, 1, 1, inventory, inputs, outputs);
}
@Override