From 70fb3475418db0048c39db1479b62a92be041314 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 27 Jul 2016 11:05:53 +1000 Subject: + Updated Tooltips on all GT5u related blocks. + Added Config options for TC Shard OreDicting, IC2 Recipe Removal and Alternative battery Alloy. $ Fixed the Industrial Centrifuge not handling recipes properly. $ Fixed the Industrial Centrifuge stopping when it's recipe time was < 1. % Moved Config related variables to their own inner class within CORE.java --- .../core/handler/registration/gregtech/GregtechSolarGenerators.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/miscutil/core/handler') diff --git a/src/Java/miscutil/core/handler/registration/gregtech/GregtechSolarGenerators.java b/src/Java/miscutil/core/handler/registration/gregtech/GregtechSolarGenerators.java index 5f6def23cf..d9320646f7 100644 --- a/src/Java/miscutil/core/handler/registration/gregtech/GregtechSolarGenerators.java +++ b/src/Java/miscutil/core/handler/registration/gregtech/GregtechSolarGenerators.java @@ -1,6 +1,6 @@ package miscutil.core.handler.registration.gregtech; -import miscutil.core.lib.CORE; +import miscutil.core.lib.CORE.configSwitches; import miscutil.core.lib.LoadedMods; import miscutil.core.util.Utils; import miscutil.core.xmod.gregtech.api.enums.GregtechItemList; @@ -10,7 +10,7 @@ public class GregtechSolarGenerators { public static void run() { - if (LoadedMods.Gregtech && CORE.enableSolarGenerators){ + if (LoadedMods.Gregtech && configSwitches.enableSolarGenerators){ Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Solar Generator Blocks."); run1(); } -- cgit