diff options
author | draknyte1 <draknyte1@hotmail.com> | 2017-02-24 19:01:15 +1000 |
---|---|---|
committer | draknyte1 <draknyte1@hotmail.com> | 2017-02-24 19:01:15 +1000 |
commit | a28373b1977ed51fba9557232472af9ba23a0146 (patch) | |
tree | ab25aca226de915cb098123d15a664d3525655aa /src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java | |
parent | 753dfac294b530de403c85eb931f4989868a4203 (diff) | |
download | GT5-Unofficial-a28373b1977ed51fba9557232472af9ba23a0146.tar.gz GT5-Unofficial-a28373b1977ed51fba9557232472af9ba23a0146.tar.bz2 GT5-Unofficial-a28373b1977ed51fba9557232472af9ba23a0146.zip |
% Tweaked recipe generation to use 30/120/500 eu/t as opposed to 32/128/512 eu/t to account for cable loss.
+ Re-enabled shapeless crafting recipes for lower tier alloys, as opposed to enforcing mixer only recipes.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java index 0502156525..c48a41b496 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java @@ -23,7 +23,7 @@ public class RecipeGen_Plates implements Runnable{ public static void generateRecipes(final Material material){ - final int tVoltageMultiplier = material.getMeltingPointK() >= 2800 ? 64 : 16; + final int tVoltageMultiplier = material.getMeltingPointK() >= 2800 ? 60 : 15; final ItemStack ingotStackOne = material.getIngot(1); final ItemStack ingotStackTwo = material.getIngot(2); final ItemStack shape_Mold = ItemList.Shape_Mold_Plate.get(0); |