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

@ -30,9 +30,9 @@ public class ContainerLathe extends TechRebornContainer {
// input
this.addSlotToContainer(new Slot(tilelathe.inventory, 0, 56, 17));
// outputs
this.addSlotToContainer(new SlotOutput(tilelathe.inventory, 2, 116, 35));
this.addSlotToContainer(new SlotOutput(tilelathe.inventory, 1, 116, 35));
// power
this.addSlotToContainer(new Slot(tilelathe.inventory, 1, 56, 53));
this.addSlotToContainer(new Slot(tilelathe.inventory, 2, 56, 53));
int i;

View file

@ -204,7 +204,7 @@ public class ModRecipes {
RecipeHanderer.addRecipe(new AlloySmelterRecipe(new ItemStack(Items.coal), new ItemStack(Blocks.sand), new ItemStack(Items.diamond), 120, 5));
RecipeHanderer.addRecipe(new AssemblingMachineRecipe(new ItemStack(Items.coal), new ItemStack(Blocks.sand), new ItemStack(Items.diamond), 120, 5));
//TODO BORKEN
// RecipeHanderer.addRecipe(new LatheRecipe(new ItemStack(Items.coal), new ItemStack(Items.diamond), 120, 5));
RecipeHanderer.addRecipe(new LatheRecipe(new ItemStack(Items.coal), new ItemStack(Items.diamond), 120, 5));
RecipeHanderer.addRecipe(new IndustrialSawmillRecipe(new ItemStack(Items.coal), new ItemStack(Blocks.sand), new ItemStack(Items.diamond), new ItemStack(Items.diamond), new ItemStack(Items.diamond) , 120, 5));
LogHelper.info("Machine Recipes Added");

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