Fix Minetweaker issue.

This commit is contained in:
modmuss50 2017-01-16 10:06:11 +00:00
parent a172c6aabe
commit e93c580528
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

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