(int energy, ItemStack input, FluidStack output)
| 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(); |
| 1144 | toSend.setInteger("energy", energy); |
| 1145 | toSend.setTag("input", UT.NBT.make()); |
| 1146 | toSend.setTag("output", UT.NBT.make()); |
| 1147 | input.writeToNBT(toSend.getCompoundTag("input")); |
| 1148 | output.writeToNBT(toSend.getCompoundTag("output")); |
| 1149 | FMLInterModComms.sendMessage("ThermalExpansion", "CrucibleRecipe", toSend); |
| 1150 | } |
| 1151 | public static void te_fill(int energy, ItemStack input, ItemStack output, FluidStack fluid, boolean reversible) { |
| 1152 | if (input == null || output == null || fluid == null) return; |
| 1153 | NBTTagCompound toSend = UT.NBT.make(); |
nothing calls this directly
no test coverage detected