(int energy, ItemStack input, ItemStack output, FluidStack fluid, boolean reversible)
| 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(); |
| 1154 | toSend.setInteger("energy", energy); |
| 1155 | toSend.setTag("input", UT.NBT.make()); |
| 1156 | toSend.setTag("output", UT.NBT.make()); |
| 1157 | toSend.setTag("fluid", UT.NBT.make()); |
| 1158 | input.writeToNBT(toSend.getCompoundTag("input")); |
| 1159 | output.writeToNBT(toSend.getCompoundTag("output")); |
| 1160 | UT.NBT.setBoolean(toSend, "reversible", reversible); |
| 1161 | fluid.writeToNBT(toSend.getCompoundTag("fluid")); |
| 1162 | FMLInterModComms.sendMessage("ThermalExpansion", "TransposerFillRecipe", toSend); |
| 1163 | } |
| 1164 | public static void te_extract(int energy, ItemStack input, ItemStack output, FluidStack fluid, int chance, boolean reversible) { |
| 1165 | if (input == null || output == null || fluid == null) return; |
| 1166 | NBTTagCompound toSend = UT.NBT.make(); |
nothing calls this directly
no test coverage detected