diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-01-15 15:19:05 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-01-15 15:19:05 +0000 |
commit | 86bf45662a877c8ce9ca9551b41c789c098dc698 (patch) | |
tree | 9cb2c65a914312afbbe7887966d43d5feed95505 /src/Java/gtPlusPlus/xmod/gregtech/common/items | |
parent | 05efaa691d2ebe9fd4811444dbf6f0de1ca142b6 (diff) | |
download | GT5-Unofficial-86bf45662a877c8ce9ca9551b41c789c098dc698.tar.gz GT5-Unofficial-86bf45662a877c8ce9ca9551b41c789c098dc698.tar.bz2 GT5-Unofficial-86bf45662a877c8ce9ca9551b41c789c098dc698.zip |
+ Added recipes for the control cores and the respective module for multiblocks.
+ Added recipes for the Circuit Programmer, Lead Lined Chest & the RTG.
% Adjust Computer Cube recipe to now require an assembler.
% Adjusted recipes using MAX tier machine components to use the correct parts in GTNH.
% Greatly reduced EU capacity for the Computer Cube.
$ Mostly finished work on the Generator Array. (Still requires some fine tuning but the general result is solid)
$ Fixed a weird bug with hand-pumps, causing crashes due to an invalid offset for IIcons.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/items')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java index 120f1aab9e..b54eb770ec 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java @@ -233,7 +233,7 @@ public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 { MathUtils.roundToClosestInt(432/2)); //Computer Cube GregtechItemList.Gregtech_Computer_Cube.set(this.addItem(tLastID = 55, "Gregtech Computer Cube", "Reusable", new Object[]{getTcAspectStack(TC_Aspects.ELECTRUM, 8L), getTcAspectStack(TC_Aspects.METALLUM, 8L), getTcAspectStack(TC_Aspects.POTENTIA, 8L)})); - this.setElectricStats(32000 + tLastID, Integer.MAX_VALUE, GT_Values.V[5], 5L, -3L, true); + this.setElectricStats(32000 + tLastID, GT_Values.V[6]* 10 * 60 * 20, GT_Values.V[5], 5L, -3L, true); //FOOOOOOOOOOOOOOD GregtechItemList.Food_Baked_Raisin_Bread.set(this.addItem(tLastID = 60, "Raisin Bread", "Extra Raisins, Just for ImQ009", new Object[]{new GT_FoodStat(5, 0.5F, EnumAction.eat, null, false, true, false, new int[0]), getTcAspectStack(TC_Aspects.CORPUS, 1L), getTcAspectStack(TC_Aspects.FAMES, 1L), getTcAspectStack(TC_Aspects.IGNIS, 1L)})); |