diff options
| author | Alkalus <draknyte1@hotmail.com> | 2017-08-05 15:55:15 +1000 |
|---|---|---|
| committer | Alkalus <draknyte1@hotmail.com> | 2017-08-05 15:55:15 +1000 |
| commit | 6726e0c91215e74f6f0706eaa06df160aee3c3da (patch) | |
| tree | ceaf3168042eb67755f336d911a50ba2e5c217a9 /src/Java/gtPlusPlus/core/recipe/common | |
| parent | 8d5d791b1cb53f9b66a36c5bc37ffbef8ac8fc43 (diff) | |
| download | GT5-Unofficial-6726e0c91215e74f6f0706eaa06df160aee3c3da.tar.gz GT5-Unofficial-6726e0c91215e74f6f0706eaa06df160aee3c3da.tar.bz2 GT5-Unofficial-6726e0c91215e74f6f0706eaa06df160aee3c3da.zip | |
+ Added the Computer Cube.
+ Added recipes for the tesseract devices.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe/common')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/common/CI.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/common/CI.java b/src/Java/gtPlusPlus/core/recipe/common/CI.java index 7dab00c847..7a3d3b3c13 100644 --- a/src/Java/gtPlusPlus/core/recipe/common/CI.java +++ b/src/Java/gtPlusPlus/core/recipe/common/CI.java @@ -370,5 +370,14 @@ public class CI { Utils.LOG_INFO("[Components] Failed getting a tiered component. "+type.name()+" | "+tier); return null; } + + public static ItemStack getDataOrb(){ + if (CORE.configSwitches.enableOldGTcircuits){ + return GregtechItemList.Old_Tool_DataOrb.get(1); + } + else { + return ItemList.Tool_DataOrb.get(1); + } + } } |
