aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thermalfoundation/recipe
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-05-22 18:11:38 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-05-22 18:11:38 +1000
commitd33420c29631c43ba9e1c22e2c3ac9a7e9556b5f (patch)
treeea05c9e29f3ce3d6bb35d108418da61df2b6dbdd /src/Java/gtPlusPlus/xmod/thermalfoundation/recipe
parentfdf0162ea7123599331f84e4057591a39904aab3 (diff)
downloadGT5-Unofficial-d33420c29631c43ba9e1c22e2c3ac9a7e9556b5f.tar.gz
GT5-Unofficial-d33420c29631c43ba9e1c22e2c3ac9a7e9556b5f.tar.bz2
GT5-Unofficial-d33420c29631c43ba9e1c22e2c3ac9a7e9556b5f.zip
$ Fixed some TF recipes.
$ Fixed some Maceration recipes.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thermalfoundation/recipe')
-rw-r--r--src/Java/gtPlusPlus/xmod/thermalfoundation/recipe/TF_Gregtech_Recipes.java41
1 files changed, 27 insertions, 14 deletions
diff --git a/src/Java/gtPlusPlus/xmod/thermalfoundation/recipe/TF_Gregtech_Recipes.java b/src/Java/gtPlusPlus/xmod/thermalfoundation/recipe/TF_Gregtech_Recipes.java
index fc5db6f70a..e3aaa1ae2f 100644
--- a/src/Java/gtPlusPlus/xmod/thermalfoundation/recipe/TF_Gregtech_Recipes.java
+++ b/src/Java/gtPlusPlus/xmod/thermalfoundation/recipe/TF_Gregtech_Recipes.java
@@ -50,40 +50,53 @@ public class TF_Gregtech_Recipes {
GT_Values.RA.addFluidExtractionRecipe(dust_Pyrotheum, GT_Values.NI, getFluidStack("pyrotheum", 250), 10000, 200, 240);
+ ItemStack dustCoal = ItemUtils.getItemStackOfAmountFromOreDict("dustCoal", 1);
+ ItemStack dustSulfur = ItemUtils.getItemStackOfAmountFromOreDict("dustSulfur", 1);
+ ItemStack dustRedstone = ItemUtils.getItemStackOfAmountFromOreDict("dustRedstone", 1);
+ ItemStack dustBlaze = ItemUtils.getItemStackOfAmountFromOreDict("dustBlaze", 1);
+ ItemStack dustSaltpeter = ItemUtils.getItemStackOfAmountFromOreDict("dustSaltpeter", 1);
+ ItemStack dustSnow = ItemUtils.getItemStackOfAmountFromOreDict("dustSnow", 1);
+ ItemStack dustBlizz = ItemUtils.getItemStackOfAmountFromOreDict("dustBlizz", 1);
+ ItemStack dustNiter = ItemUtils.getItemStackOfAmountFromOreDict("dustNiter", 1);
+ if (ItemUtils.checkForInvalidItems(new ItemStack[] {dustCoal, dustSulfur, dustRedstone, dustBlaze})) {
GT_Values.RA.addMixerRecipe(
- ItemUtils.getItemStackOfAmountFromOreDict("dustCoal", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustSulfur", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustRedstone", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustBlaze", 1), //Input
+ dustCoal,
+ dustSulfur,
+ dustRedstone,
+ dustBlaze, //Input
null, //F in
null, //F out
ItemHelper.cloneStack(dust_Pyrotheum, 1), //Output
20*8,
120);
-
+ }
+
+ if (ItemUtils.checkForInvalidItems(new ItemStack[] {dustSaltpeter, dustSnow, dustRedstone, dustBlizz})) {
GT_Values.RA.addMixerRecipe(
- ItemUtils.getItemStackOfAmountFromOreDict("dustSaltpeter", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustSnow", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustRedstone", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustBlizz", 1), //Input
+ dustSaltpeter,
+ dustSnow,
+ dustRedstone,
+ dustBlizz, //Input
null, //F in
null, //F out
ItemHelper.cloneStack(dust_Cryotheum, 1), //Output
20*8,
120);
+ }
+ if (ItemUtils.checkForInvalidItems(new ItemStack[] {dustNiter, dustSnow, dustRedstone, dustBlizz})) {
GT_Values.RA.addMixerRecipe(
- ItemUtils.getItemStackOfAmountFromOreDict("dustNitor", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustSnow", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustRedstone", 1),
- ItemUtils.getItemStackOfAmountFromOreDict("dustBlizz", 1), //Input
+ dustNiter,
+ dustSnow,
+ dustRedstone,
+ dustBlizz, //Input
null, //F in
null, //F out
ItemHelper.cloneStack(dust_Cryotheum, 1), //Output
20*8,
120);
-
+ }
}