diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-12 16:09:21 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-12 16:09:21 +0000 |
commit | 35005d1e8124f7a078bb65fb0b11e2e64f1287b9 (patch) | |
tree | f78d5a7fd491d3514a2d88eeaab340ba31ea23b8 /src/Java/gtPlusPlus/xmod/gregtech/registration | |
parent | f5f7c53610a342c644bebf7d77f9cf8f4d2aba4c (diff) | |
download | GT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.tar.gz GT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.tar.bz2 GT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.zip |
Added recipes for the Cold Trap and Reactor Processing Unit.
Fixed NEI handler for sparging.
Changed ABS NEI handler.
Replace non-verbose FMLCommonHandler.instance().exitJava() calls with CORE.Crash(string).
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLFTR.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLFTR.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLFTR.java index ef18fb8650..cef60ba712 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLFTR.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLFTR.java @@ -30,6 +30,7 @@ public class GregtechLFTR { GregtechItemList.ColdTrap_IV.set(new GregtechMetaTileEntity_ReactorColdTrap(31033, "coldtrap.tier.01", "Cold Trap I", 5).getStackForm(1L)); GregtechItemList.ColdTrap_ZPM.set(new GregtechMetaTileEntity_ReactorColdTrap(31034, "coldtrap.tier.02", "Cold Trap II", 7).getStackForm(1L)); // Sparge Tower - GregtechItemList.Controller_Sparge_Tower.set(new GregtechMetaTileEntity_SpargeTower(31035, "sparge.controller.single", "Sparge Tower Controller").getStackForm(1L)); + GregtechItemList.Controller_Sparge_Tower.set(new GregtechMetaTileEntity_SpargeTower(31035, "sparge.controller.single", "Sparge Tower Controller").getStackForm(1L)); + } } |