| 1134 | FMLInterModComms.sendMessage("ThermalExpansion", "SmelterRecipe", toSend); |
| 1135 | } |
| 1136 | public static void te_smelter_ore(OreDictMaterial aMaterial) { |
| 1137 | NBTTagCompound toSend = UT.NBT.make(); |
| 1138 | toSend.setString("oreType", aMaterial.toString()); |
| 1139 | FMLInterModComms.sendMessage("ThermalExpansion", "SmelterBlastOreType", toSend); |
| 1140 | } |
| 1141 | public static void te_crucible(int energy, ItemStack input, FluidStack output) { |
| 1142 | if (input == null || output == null) return; |
| 1143 | NBTTagCompound toSend = UT.NBT.make(); |