MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / te_furnace

Method te_furnace

src/main/java/gregapi/data/RM.java:1068–1076  ·  view source on GitHub ↗
(int energy, ItemStack input, ItemStack output)

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 2

makeMethod · 0.45
writeToNBTMethod · 0.45

Tested by

no test coverage detected