Heatexchanger crafttweaker recipes wrong implementation
igentuman opened this issue ยท 1 comments
mods.nuclearcraft.HeatExchanger.addRecipe(ILiquidStack fluidInput, ILiquidStack fluidOutput, double heatRequired, int temperatureIn, int temperatureOut);
mods.nuclearcraft.HeatExchanger.removeRecipeWithInput(ILiquidStack fluidInput);
mods.nuclearcraft.HeatExchanger.removeRecipeWithOutput(ILiquidStack fluidOutput);
@ZenMethod
public static void addRecipe(Object[] objects) {
CraftTweakerAPI.apply(new CTAddRecipe(NCRecipes.heat_exchanger, Lists.newArrayList(objects)));
}
@ZenMethod
public static void removeRecipeWithInput(IIngredient[] inputs) {
CraftTweakerAPI.apply(new CTRemoveRecipe(NCRecipes.heat_exchanger, IngredientSorption.INPUT, Lists.newArrayList(inputs)));
}
@ZenMethod
public static void removeRecipeWithOutput(IIngredient[] outputs) {
CraftTweakerAPI.apply(new CTRemoveRecipe(NCRecipes.heat_exchanger, IngredientSorption.OUTPUT, Lists.newArrayList(outputs)));
}