Fix MT issue, closes #888

This commit is contained in:
modmuss50 2017-01-14 16:56:41 +00:00
parent 2a632ac265
commit 84c03dbe3f
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -9,6 +9,7 @@ import net.minecraftforge.fluids.FluidStack;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import techreborn.api.Reference;
import techreborn.api.recipe.machines.IndustrialGrinderRecipe;
@ZenClass("mods.techreborn.grinder")
public class MTIndustrialGrinder extends MTGeneric {
@ -29,9 +30,8 @@ public class MTIndustrialGrinder extends MTGeneric {
fluidStack = MinetweakerCompat.toFluidStack(fluid);
}
//FIXME 25.07.2016
//IndustrialGrinderRecipe r = new IndustrialGrinderRecipe(oInput1, oInput2, fluidStack, MinetweakerCompat.toStack(output1), MinetweakerCompat.toStack(output3), MinetweakerCompat.toStack(output4), ticktime, euTick);
//addRecipe(r);
IndustrialGrinderRecipe r = new IndustrialGrinderRecipe(oInput1, fluidStack, MinetweakerCompat.toStack(output1),MinetweakerCompat.toStack(output2), MinetweakerCompat.toStack(output3), MinetweakerCompat.toStack(output4), ticktime, euTick);
addRecipe(r);
}
@ZenMethod