blob: 62aaceeaad62d3f89deb6d5b12b9b0051491f91e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package gregtech.api.util;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
public class HotFuel {
public static void addNewHotFuel(FluidStack aInput1, FluidStack aOutput1, ItemStack[] outputItems, int[] chances, int aSpecialValue) {
GT_Recipe x = new GT_Recipe(
true,
null,
outputItems,
null,
chances,
new FluidStack[]{aInput1},
new FluidStack[]{aOutput1},
1, //1 Tick
0, //No Eu produced
aSpecialValue //Magic Number
);
Recipe_GT.Gregtech_Recipe_Map.sThermalFuels.addRecipe(x);
}
}
|