From 5a90d0ab107b4711b2b22aa3b2964ce7d669a216 Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Sun, 10 Dec 2017 15:37:46 +1000 Subject: % Major Refactor of the base GT++ class. % Moved Config Handling to it's own class. % Renamed configSwitches.class to ConfigSwitches.class. + Added framework for Segment Analytics. --- src/Java/gregtech/api/util/MultiblockRecipeMapHandler.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/gregtech/api/util') diff --git a/src/Java/gregtech/api/util/MultiblockRecipeMapHandler.java b/src/Java/gregtech/api/util/MultiblockRecipeMapHandler.java index 143f465233..7a4e1a533a 100644 --- a/src/Java/gregtech/api/util/MultiblockRecipeMapHandler.java +++ b/src/Java/gregtech/api/util/MultiblockRecipeMapHandler.java @@ -16,16 +16,16 @@ public class MultiblockRecipeMapHandler{ public static void run() { - if(CORE.configSwitches.enableMultiblock_IndustrialElectrolyzer){ + if(CORE.ConfigSwitches.enableMultiblock_IndustrialElectrolyzer){ generateSimpleMultimachineRecipeMap(GT_Recipe.GT_Recipe_Map.sElectrolyzerRecipes, CustomRecipeMap.mMultiElectrolyzer); } - if(CORE.configSwitches.enableMultiblock_IndustrialCentrifuge){ + if(CORE.ConfigSwitches.enableMultiblock_IndustrialCentrifuge){ generateSimpleMultimachineRecipeMap(GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes, CustomRecipeMap.mMultiCentrifuge); } - if(CORE.configSwitches.enableMultiblock_IndustrialMacerationStack){ + if(CORE.ConfigSwitches.enableMultiblock_IndustrialMacerationStack){ generateSimpleMultimachineRecipeMap(GT_Recipe.GT_Recipe_Map.sMaceratorRecipes, CustomRecipeMap.mMultiMacerator); } - if(CORE.configSwitches.enableMultiblock_IndustrialWireMill){ + if(CORE.ConfigSwitches.enableMultiblock_IndustrialWireMill){ generateSimpleMultimachineRecipeMap(GT_Recipe.GT_Recipe_Map.sWiremillRecipes, CustomRecipeMap.mMultiWireMill); } -- cgit