diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-08-25 10:55:25 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-08-25 10:55:25 +1000 |
commit | c5caaa5bfd1ee47516272342dc1914911e6ca1e6 (patch) | |
tree | 9452de0adfcbf3b1bca51c48b73f76c57587810f /src/Java/gtPlusPlus/xmod | |
parent | 51bf8ba4b428226bd4e0336ab73875920d29cfb1 (diff) | |
download | GT5-Unofficial-c5caaa5bfd1ee47516272342dc1914911e6ca1e6.tar.gz GT5-Unofficial-c5caaa5bfd1ee47516272342dc1914911e6ca1e6.tar.bz2 GT5-Unofficial-c5caaa5bfd1ee47516272342dc1914911e6ca1e6.zip |
% Minor change to Auto-Crafter progress time.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GT4Entity_AutoCrafter.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GT4Entity_AutoCrafter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GT4Entity_AutoCrafter.java index bc03a50b65..47c82163e9 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GT4Entity_AutoCrafter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GT4Entity_AutoCrafter.java @@ -301,7 +301,7 @@ extends GT_MetaTileEntity_MultiBlockBase if (tNBT != null) { Utils.LOG_INFO("test 3"); this.mEUt = 16 * (1 << this.mTier - 1) * (1 << this.mTier - 1); - this.mMaxProgresstime = 80; + this.mMaxProgresstime = 400; for (int i = 0; i < this.mOutputItems.length; ++i) { Utils.LOG_INFO("test 4 | "+i); if (this.getBaseMetaTileEntity().getRandomNumber(100) < 50 + 10 * this.mTier) { @@ -314,11 +314,11 @@ extends GT_MetaTileEntity_MultiBlockBase if (this.mTier > 5) { this.mMaxProgresstime >>= this.mTier - 5; } - if (this.mMaxProgresstime == 80) { + if (this.mMaxProgresstime == 400) { return false; } final ItemStack input2 = inputItem; - --input2.stackSize; + inputItem.stackSize--; return true; } } |