(int energy, ItemStack input, ItemStack output)
| 1066 | } |
| 1067 | |
| 1068 | public static void te_furnace(int energy, ItemStack input, ItemStack output) { |
| 1069 | NBTTagCompound toSend = UT.NBT.make(); |
| 1070 | toSend.setInteger("energy", energy); |
| 1071 | toSend.setTag("input", UT.NBT.make()); |
| 1072 | toSend.setTag("output", UT.NBT.make()); |
| 1073 | input.writeToNBT(toSend.getCompoundTag("input")); |
| 1074 | output.writeToNBT(toSend.getCompoundTag("output")); |
| 1075 | FMLInterModComms.sendMessage("ThermalExpansion", "FurnaceRecipe", toSend); |
| 1076 | } |
| 1077 | public static void te_pulverizer(int energy, ItemStack input, ItemStack primaryOutput) { |
| 1078 | te_pulverizer(energy, input, primaryOutput, null, 0); |
| 1079 | } |
nothing calls this directly
no test coverage detected