diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-11 11:55:24 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-11 11:55:24 +1000 |
commit | 875d6ed05ea1ffc327123bd577dcdeb757d106e1 (patch) | |
tree | b79268408e033d275ad1aaf78233cd94176b1b52 /src/Java/gtPlusPlus/xmod/gregtech/common | |
parent | 1767b5a2943ab483616b8b69e4027997e028d5cc (diff) | |
download | GT5-Unofficial-875d6ed05ea1ffc327123bd577dcdeb757d106e1.tar.gz GT5-Unofficial-875d6ed05ea1ffc327123bd577dcdeb757d106e1.tar.bz2 GT5-Unofficial-875d6ed05ea1ffc327123bd577dcdeb757d106e1.zip |
+ Added a config switch to fully disable the GT++ Circuits.
- Disabled Radon.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java index f945574677..2042c07aeb 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java @@ -140,8 +140,11 @@ public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 { GregtechItemList.Circuit_Parts_Wiring_IV.set(this.addItem(tLastID = 719, "Etched IV Voltage Wiring", "Part of Circuit Boards", new Object[0])); GregtechItemList.Circuit_Parts_Wiring_LuV.set(this.addItem(tLastID = 720, "Etched LuV Voltage Wiring", "Part of Circuit Boards", new Object[0])); GregtechItemList.Circuit_Parts_Wiring_ZPM.set(this.addItem(tLastID = 721, "Etched ZPM Voltage Wiring", "Part of Circuit Boards", new Object[0])); - ItemUtils.addItemToOreDictionary(GregtechItemList.Circuit_IV.get(1), "circuitSuperconductor"); - ItemUtils.addItemToOreDictionary(GregtechItemList.Circuit_LuV.get(1), "circuitInfinite"); + + if (CORE.configSwitches.enableCustomCircuits){ + ItemUtils.addItemToOreDictionary(GregtechItemList.Circuit_IV.get(1), "circuitSuperconductor"); + ItemUtils.addItemToOreDictionary(GregtechItemList.Circuit_LuV.get(1), "circuitInfinite"); + } |