From e93c580528534baa0dadcfd980827a940383b3f7 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Mon, 16 Jan 2017 10:06:11 +0000 Subject: [PATCH] Fix Minetweaker issue. --- .../techreborn/compat/minetweaker/MTIndustrialGrinder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/techreborn/compat/minetweaker/MTIndustrialGrinder.java b/src/main/java/techreborn/compat/minetweaker/MTIndustrialGrinder.java index 1cffd22d6..156364881 100644 --- a/src/main/java/techreborn/compat/minetweaker/MTIndustrialGrinder.java +++ b/src/main/java/techreborn/compat/minetweaker/MTIndustrialGrinder.java @@ -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