diff --git a/src/main/resources/assets/opencomputers/recipes/gregtech.recipes b/src/main/resources/assets/opencomputers/recipes/gregtech.recipes index 3b3fbf8f3f..ac1b607d9c 100644 --- a/src/main/resources/assets/opencomputers/recipes/gregtech.recipes +++ b/src/main/resources/assets/opencomputers/recipes/gregtech.recipes @@ -9,7 +9,6 @@ # - gt_canner : Canning Machine Recipe # - gt_chemical : Chemical Recipe # - gt_cutter : Cutter Recipe -# - gt_fluidCanner : Fluid Canner Recipe # - gt_formingPress : Forming Press Recipe # - gt_lathe : Lathe Machine Recipe # - gt_laserEngraver: Laser Engraver Recipe diff --git a/src/main/scala/li/cil/oc/integration/gregtech/RecipeHandler.scala b/src/main/scala/li/cil/oc/integration/gregtech/RecipeHandler.scala index c6e5af64cf..6aafb6a6d4 100644 --- a/src/main/scala/li/cil/oc/integration/gregtech/RecipeHandler.scala +++ b/src/main/scala/li/cil/oc/integration/gregtech/RecipeHandler.scala @@ -20,7 +20,6 @@ object RecipeHandler { Recipes.registerRecipeHandler("gt_canner", addGTCannerRecipe) Recipes.registerRecipeHandler("gt_chemical", addGTChemicalRecipe) Recipes.registerRecipeHandler("gt_cutter", addGTCutterRecipe) - Recipes.registerRecipeHandler("gt_fluidCanner", addGTFluidCannerRecipe) Recipes.registerRecipeHandler("gt_formingPress", addGTFormingPressRecipe) Recipes.registerRecipeHandler("gt_lathe", addGTLatheRecipe) Recipes.registerRecipeHandler("gt_laserEngraver", addGTLaserEngraverRecipe) @@ -162,24 +161,6 @@ object RecipeHandler { } } - def addGTFluidCannerRecipe(output: ItemStack, recipe: Config) { - val (primaryInputs, _, fluidInput, fluidOutput, _, eu, duration) = parseRecipe(output, recipe) - for (primaryInput <- primaryInputs) { - var recipe = GTValues.RA.stdBuilder().itemInputs(primaryInput) - fluidInput match { - case Some(fluidStack) => - recipe = recipe.fluidInputs(fluidStack) - case _ => - } - fluidOutput match { - case Some(fluidStack) => - recipe = recipe.fluidOutputs(fluidStack) - case _ => - } - recipe.itemOutputs(output).duration(duration).eut(eu).addTo(RecipeMaps.fluidCannerRecipes) - } - } - def addGTFormingPressRecipe(output: ItemStack, recipe: Config) { val (primaryInputs, secondaryInputs, _, _, _, eu, duration) = parseRecipe(output, recipe) secondaryInputs match {