diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2023-02-09 00:46:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 00:46:21 +0000 |
commit | 41a21223aecf805673b9e1c16e9ab8d7e4ed418c (patch) | |
tree | a6c59968132c2aff863015bd28c60fb9c32dab47 /src/main/java/gtPlusPlus/xmod/gregtech/loaders | |
parent | 8f4b511c9951ecb09a69bef0ef91ebce7b6095a5 (diff) | |
download | GT5-Unofficial-41a21223aecf805673b9e1c16e9ab8d7e4ed418c.tar.gz GT5-Unofficial-41a21223aecf805673b9e1c16e9ab8d7e4ed418c.tar.bz2 GT5-Unofficial-41a21223aecf805673b9e1c16e9ab8d7e4ed418c.zip |
Allow hatches for industrial forge hammer (#533)
* Fix IndustrialForgeHammer structure
* sa
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java index 0aa8b31e03..5ebc492fbf 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java @@ -538,15 +538,13 @@ public class RecipeLoader_Nuclear { // Radium GT_Values.RA.addSifterRecipe( ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedThorium", 1), - new ItemStack[] { - ItemUtils.getItemStackOfAmountFromOreDict("dustThorium", 1), - ItemUtils.getItemStackOfAmountFromOreDict("dustLead", 1), - ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), - ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), - ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), - ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1) - }, - new int[] {10000, 500, 300, 200, 100, 100}, + new ItemStack[] { ItemUtils.getItemStackOfAmountFromOreDict("dustThorium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustLead", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1) }, + new int[] { 10000, 500, 300, 200, 100, 100 }, 20 * 30, 500); |