aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe/common')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/common/CI.java9
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);
+ }
+ }
}