diff options
| author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-13 19:02:58 +0000 |
|---|---|---|
| committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-13 19:02:58 +0000 |
| commit | bc630f3a7738e4a495cdc1672949d934f76838e3 (patch) | |
| tree | 263bc63824d8db4e0c2f6f333a1ce7c7adbe87ec /src/Java/gtPlusPlus/core/recipe | |
| parent | 8a7e602c8cbd1a82cd967fab2989d06e59f99e7a (diff) | |
| download | GT5-Unofficial-bc630f3a7738e4a495cdc1672949d934f76838e3.tar.gz GT5-Unofficial-bc630f3a7738e4a495cdc1672949d934f76838e3.tar.bz2 GT5-Unofficial-bc630f3a7738e4a495cdc1672949d934f76838e3.zip | |
+ Added Hazmat protection to EMT, Gravisuit and Adv. Solar items. Closes #590.
+ Added a hard crash if materials are not found within GT.
+ Added a check for KekzTech and cached some mod checks.
+ Added pollution/s to Geothermal generators. Fixes #579.
$ Fixed Wither Cages being unbreakable. Fixes #587
$ Fixed centrifuging of logs to Methane. Fixes #595.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index cf2242067f..cd02a297a7 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -1752,27 +1752,7 @@ public class RECIPES_GREGTECH { } - private static void centrifugeRecipes() { - - //Try use all woods found, fix/add methane extraction. - ArrayList<ItemStack> aLogData = OreDictionary.getOres("logWood"); - ArrayList<ItemStack> aRubberLogs = OreDictionary.getOres("logRubber"); - if (!aLogData.isEmpty() && !aRubberLogs.isEmpty()) { - Logger.INFO("Fixing Methane output of centrifuged logs."); - //First Check to see if it's a rubber log - for (ItemStack stack : aLogData) { - if (aRubberLogs.contains(stack)) { - if (GT_Values.RA.addCentrifugeRecipe(GT_Utility.copyAmount(1L, stack), null, null, Materials.Methane.getGas(60L), ItemList.IC2_Resin.get(1L, new Object[0]), GT_ModHandler.getIC2Item("plantBall", 1L), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Carbon, 1L), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 1L), null, null, new int[] { 5000, 3750, 2500, 2500 }, 200, 20)) { - Logger.INFO("Added rubber plant based methane extraction for "+ItemUtils.getItemName(stack)); - } - } - else { - if (GT_Values.RA.addCentrifugeRecipe(GT_Utility.copyAmount(1L, stack), null, null, Materials.Methane.getGas(60L), GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, null, 200, 20)) { - Logger.INFO("Added methane extraction for "+ItemUtils.getItemName(stack)); - } - } - } - } + private static void centrifugeRecipes() { GT_Values.RA.addCentrifugeRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustThorium", 8), GT_Values.NI, GT_Values.NF, GT_Values.NF, ELEMENT.getInstance().THORIUM232.getDust(2), |
