blob: c9a6dcf7c5decf62201f1001d124f8a0df9efa4b (
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
28
|
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) {
GTPP_Recipe x = new GTPP_Recipe(
true,
null,
outputItems,
null,
chances,
new FluidStack[]{aInput1},
new FluidStack[]{aOutput1},
1, //1 Tick
0, //No Eu produced
aSpecialValue //Magic Number
);
GTPP_Recipe.GTPP_Recipe_Map.sThermalFuels.addRecipe(x);
}
}
|