From 337a500a5c0ccb1d17f8096b7de9b0168572a87b Mon Sep 17 00:00:00 2001
From: drcrazy <hcb@wowhcb.ru>
Date: Mon, 13 Aug 2018 15:35:30 +0300
Subject: [PATCH] Coolant part also craftable from water cells

---
 src/main/java/techreborn/init/recipes/CraftingTableRecipes.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java b/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java
index 3c568cb7c..a4d9a8043 100644
--- a/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java
+++ b/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java
@@ -29,6 +29,7 @@ import net.minecraft.init.Blocks;
 import net.minecraft.init.Enchantments;
 import net.minecraft.init.Items;
 import net.minecraft.item.ItemStack;
+import net.minecraftforge.common.crafting.CraftingHelper;
 import net.minecraftforge.oredict.OreDictionary;
 import reborncore.common.util.OreUtil;
 import reborncore.common.util.RebornCraftingHelper;
@@ -203,6 +204,7 @@ public class CraftingTableRecipes extends RecipeMethods {
 		registerShaped(getMaterial("tungsten_grinding_head", 2, Type.PART), "TST", "SBS", "TST", 'S', "ingotSteel", 'T', "ingotTungsten", 'B', "blockSteel");
 		registerShaped(getMaterial("computer_monitor", Type.PART), "ADA", "DGD", "ADA", 'D', "dye", 'A', "ingotAluminum", 'G', "paneGlass");
 		registerShaped(getMaterial("coolant_simple", 2, Type.PART), " T ", "TWT", " T ", 'T', "ingotTin", 'W', getStack(Items.WATER_BUCKET));
+		registerShaped(getMaterial("coolant_simple", 2, Type.PART), " T ", "TWT", " T ", 'T', "ingotTin", 'W', getCell("water"));
 		registerShaped(getMaterial("coolant_triple", Type.PART), "TTT", "CCC", "TTT", 'T', "ingotTin", 'C', getMaterial("coolant_simple", Type.PART));
 		registerShaped(getMaterial("coolant_six", Type.PART), "TCT", "TPT", "TCT", 'T', "ingotTin", 'C', getMaterial("coolant_triple", Type.PART), 'P', "plateCopper");
 		registerShaped(getMaterial("helium_coolant_simple", Type.PART), " T ", "TCT", " T ", 'T', "ingotTin", 'C', getCell("helium"));