aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/config
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-01-31 05:44:45 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-01-31 05:44:45 +1000
commitc6581f8bafaedfa9ae91730e5b0d87ff4e4cc49a (patch)
treeaabb3366ccd05310f245bcda3eb44fd0a132aeae /src/Java/gtPlusPlus/core/config
parent70f73cfe881bbcfc8f9fedf07ad0dc5f0d8075df (diff)
downloadGT5-Unofficial-c6581f8bafaedfa9ae91730e5b0d87ff4e4cc49a.tar.gz
GT5-Unofficial-c6581f8bafaedfa9ae91730e5b0d87ff4e4cc49a.tar.bz2
GT5-Unofficial-c6581f8bafaedfa9ae91730e5b0d87ff4e4cc49a.zip
+ Added config to disable tooltips on EIO ingots.
$ Fixed worldgen issue in Everglades. $ Fixed Power Sub-station not handling output voltages correctly. $ Fixed Ore vein bias issue for Everglades gen. - https://github.com/GTNewHorizons/GT5-Unofficial/commit/05b361cf7f29f1cd24d69bcea8630f3ae470b182#diff-8accfe00d7b275149176462fbc5fcf59
Diffstat (limited to 'src/Java/gtPlusPlus/core/config')
-rw-r--r--src/Java/gtPlusPlus/core/config/ConfigHandler.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/config/ConfigHandler.java b/src/Java/gtPlusPlus/core/config/ConfigHandler.java
index 641a4c0956..3d6a60dc79 100644
--- a/src/Java/gtPlusPlus/core/config/ConfigHandler.java
+++ b/src/Java/gtPlusPlus/core/config/ConfigHandler.java
@@ -25,6 +25,8 @@ public class ConfigHandler {
"Enables all sorts of debug logging. (Don't use unless told to, breaks other things.)");
disableEnderIOIntegration = config.getBoolean("disableEnderIO", "debug", false,
"Disables EnderIO Integration.");
+ disableEnderIOIngotTooltips = config.getBoolean("disableEnderIOIngotTooltips", "debug", false,
+ "Disables EnderIO Ingot Tooltips. These apparently may cause issues for a very small number of users.");
MACHINE_INFO = config.getBoolean("enableMachineInfoLogging", "debug", false,
"Makes many machines display lots of debug logging.");
showHiddenNEIItems = config.getBoolean("showHiddenNEIItems", "debug", false,