aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-13 18:01:10 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-13 18:01:10 +0000
commit8a7e602c8cbd1a82cd967fab2989d06e59f99e7a (patch)
tree4bfefefab4597cb30e487f19784a90852b98df83 /src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
parent741e8427a9f4e9bee4768e44fa88df832e825e95 (diff)
downloadGT5-Unofficial-8a7e602c8cbd1a82cd967fab2989d06e59f99e7a.tar.gz
GT5-Unofficial-8a7e602c8cbd1a82cd967fab2989d06e59f99e7a.tar.bz2
GT5-Unofficial-8a7e602c8cbd1a82cd967fab2989d06e59f99e7a.zip
$ Alloy Smelting no longer uses the wrong voltage. Fixes #607.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
index e2a30851aa..aab362f6ec 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
@@ -29,7 +29,7 @@ public class RecipeGen_AlloySmelter extends RecipeGen_Base {
}
private void generateRecipes(final Material material){
- final int tVoltageMultiplier = material.getMeltingPointK() >= 2800 ? 60 : 15;
+ final int tVoltageMultiplier = material.vVoltageMultiplier;