diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-28 15:20:32 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-28 15:20:32 +1000 |
commit | 49010b5511dce4228d6e5ef6cf790d83e88c0a59 (patch) | |
tree | a948462e4a5ec7835162b88de68cdeb73f51f6fe /src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java | |
parent | f93d9fb323a5aee2ed5c30320998f26bc177d707 (diff) | |
download | GT5-Unofficial-49010b5511dce4228d6e5ef6cf790d83e88c0a59.tar.gz GT5-Unofficial-49010b5511dce4228d6e5ef6cf790d83e88c0a59.tar.bz2 GT5-Unofficial-49010b5511dce4228d6e5ef6cf790d83e88c0a59.zip |
% Rebalanced all auto-generated material machine recipes to use the correct voltages. Closes #428
$ Re-added Additional output %'s for Multiblocks.
$ Fixed Lathe recipes not giving two small dusts. Closes #449
$ Greatly improved flexibility of Multiblock recipe handling.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java index 07f806c9c9..90bd1d8f1a 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MaterialProcessing.java @@ -42,7 +42,7 @@ public class RecipeGen_MaterialProcessing extends RecipeGen_Base { if (material.getMaterialComposites().length > 1){ Logger.MATERIALS("[Recipe Generator Debug] ["+material.getLocalizedName()+"]"); - final int tVoltageMultiplier = material.getMeltingPointK() >= 2800 ? 60 : 15; + final int tVoltageMultiplier = material.vVoltageMultiplier; int[] partSizes = new int[99]; if (material.vSmallestRatio != null) { partSizes = new int[material.vSmallestRatio.length]; |