From 6f9afd2077a07d507edcfdff69dc8e94f82d4a4e Mon Sep 17 00:00:00 2001 From: miozune Date: Wed, 30 Nov 2022 21:42:32 +0900 Subject: Make AL recipes always visible (#1529) --- src/main/java/gregtech/loaders/preload/GT_PreLoad.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/main/java/gregtech/loaders') diff --git a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java index d6818d1ac5..e651b8122d 100644 --- a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java +++ b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java @@ -470,9 +470,6 @@ public class GT_PreLoad { public static void loadConfig(Configuration tMainConfig) { GT_Values.D1 = tMainConfig.get(GT_Mod.aTextGeneral, "Debug", false).getBoolean(false); GT_Values.D2 = tMainConfig.get(GT_Mod.aTextGeneral, "Debug2", false).getBoolean(false); - GT_Values.hideAssLineRecipes = tMainConfig - .get(GT_Mod.aTextGeneral, "hide assline recipes", false) - .getBoolean(false); GT_Values.updateFluidDisplayItems = tMainConfig .get(GT_Mod.aTextGeneral, "update fluid display items", true) .getBoolean(true); -- cgit