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

Method te_crucible

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

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 2

makeMethod · 0.45
writeToNBTMethod · 0.45

Tested by

no test coverage detected