diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 00:36:31 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 00:36:31 +1000 |
commit | 03a6e7cf1f416d5a8ea2b2803a9cd022003333f3 (patch) | |
tree | 84d07d1b4c78f054ae9196dda6581e7fab5fb616 /src/Java/gtPlusPlus/core | |
parent | f669f363b18102b259195cbc42201189f1ce86e0 (diff) | |
download | GT5-Unofficial-03a6e7cf1f416d5a8ea2b2803a9cd022003333f3.tar.gz GT5-Unofficial-03a6e7cf1f416d5a8ea2b2803a9cd022003333f3.tar.bz2 GT5-Unofficial-03a6e7cf1f416d5a8ea2b2803a9cd022003333f3.zip |
$ Fixed a bug where the mold for fluid solidifying plates would get used up.
% Tweaked EU cost of a lot of recipes, using base values of 15/60 instead of 16/64.
> This means recipes use 30/120EU instead of 32/128EU, for example.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/material/Material.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/material/Material.java b/src/Java/gtPlusPlus/core/material/Material.java index 581c5f4972..eda13545c0 100644 --- a/src/Java/gtPlusPlus/core/material/Material.java +++ b/src/Java/gtPlusPlus/core/material/Material.java @@ -160,7 +160,7 @@ public class Material { this.vTier = MaterialUtils.getTierOfMaterial((int) MathUtils.celsiusToKelvin(meltingPoint)); this.usesBlastFurnace = blastFurnace; - this.vVoltageMultiplier = this.getMeltingPointK() >= 2800 ? 64 : 16; + this.vVoltageMultiplier = this.getMeltingPointK() >= 2800 ? 60 : 15; if (inputs == null){ this.vMaterialInput = null; |