diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-26 17:18:48 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-26 17:18:48 +0100 |
commit | be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b (patch) | |
tree | 06e6ef11658a519146806fc0764e133232a5e0a1 /src/Java/gtPlusPlus/core/item | |
parent | 2cf05c4deaf3a26626853431f725d0ca375ffec3 (diff) | |
download | GT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.tar.gz GT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.tar.bz2 GT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.zip |
+ Added a roasting recipe for obtaining small quantities of Germanium.
- Disabled obfuscated method names in ASM.
% More adjustments to EBF and ABS recipes.
$ Fixed names of Tungsten Steel & Stainless Steel Hexadecuple Pipes.
$ Fixed recipe collision of Rose Gold and Tumbaga in the mixer.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/base/dusts/BaseItemDust.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/dusts/BaseItemDust.java b/src/Java/gtPlusPlus/core/item/base/dusts/BaseItemDust.java index 2be7b76f6c..6ba9453467 100644 --- a/src/Java/gtPlusPlus/core/item/base/dusts/BaseItemDust.java +++ b/src/Java/gtPlusPlus/core/item/base/dusts/BaseItemDust.java @@ -202,10 +202,10 @@ public class BaseItemDust extends Item{ private boolean addBlastFurnaceRecipe(final ItemStack input1, final ItemStack input2, final ItemStack output1, final ItemStack output2, final int tempRequired){ - int timeTaken = 125*this.mTier*20; + int timeTaken = 125*this.mTier*10; if (this.mTier <= 4){ - timeTaken = 25*this.mTier*20; + timeTaken = 25*this.mTier*10; } int aSlot = mTier - 2; if (aSlot < 2) { |