diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-09 23:22:22 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-09 23:22:22 +1000 |
commit | 2d24fb951aaf2196596e9edd5dfdc5c19e77a88f (patch) | |
tree | 2ef801c10d84aa3526212c00acda63625d588b8e /src | |
parent | fd994517395f1db5e7cff51501649110765fac16 (diff) | |
download | GT5-Unofficial-2d24fb951aaf2196596e9edd5dfdc5c19e77a88f.tar.gz GT5-Unofficial-2d24fb951aaf2196596e9edd5dfdc5c19e77a88f.tar.bz2 GT5-Unofficial-2d24fb951aaf2196596e9edd5dfdc5c19e77a88f.zip |
Revert "$ Actually made the Blast Alloy Smelter 20% cheaper to run over using the Electric Blast Furnace."
This reverts commit 02719c54d8566366736485c4b28ff66b6020e3af.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelterGT.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelterGT.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelterGT.java index 9d006c4926..38f4f5c808 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelterGT.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelterGT.java @@ -45,15 +45,15 @@ public class RecipeGen_BlastSmelterGT implements Runnable{ //Set a duration int duration = 0; if (M.mBlastFurnaceTemp > 150){ - duration = (int) ((Math.max(M.getMass() / 50L, 1L) * M.mBlastFurnaceTemp)*0.8); + duration = (int) Math.max(M.getMass() / 50L, 1L) * M.mBlastFurnaceTemp; } else { - duration = (int) ((Math.max(M.getMass() / 50L, 1L) * 150)*0.8); + duration = (int) Math.max(M.getMass() / 50L, 1L) * 150; } //Sets the materials 'tier'. Will probably replace this logic. final int x = M.mMeltingPoint; - final int vVoltageMultiplier = (x <= 800 ? 8 : (x <= 1600 ? 15 : (x <= 2800 ? 30 : (x <= 3600 ? 60 : (x <= 4200 ? 120 : (x <= 5400 ? 240 : (x <= 7200 ? 480 : 1000))))))); + final int vVoltageMultiplier = (x <= 800 ? 8 : (x <= 1600 ? 16 : (x <= 2800 ? 32 : (x <= 3600 ? 64 : (x <= 4200 ? 128 : (x <= 5400 ? 256 : (x <= 7200 ? 512 : 1024))))))); //Make a simple one Material Materialstack[] and log it for validity. |