From 2cf05c4deaf3a26626853431f725d0ca375ffec3 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Fri, 26 Oct 2018 15:46:55 +0100 Subject: + Added 4 new High-Tier Alloys. Lafium, Cinobite, Pikyonite & Abyssal. + Added missing Germanium Dust. + Added compatibility for Witchery. - Removed portability of Tanks for GTNH, tanks are still portable otherwise. $ Fixed calculations for automatic recipe generation, EBF and ABS recipe requirements for GT++ Alloys are now significantly increased. $ Fixed missing Control Core textures. % Cleaned up some recipe generation. % Improved Material.java. --- src/Java/gtPlusPlus/api/objects/Logger.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/api') diff --git a/src/Java/gtPlusPlus/api/objects/Logger.java b/src/Java/gtPlusPlus/api/objects/Logger.java index 8cb165ccb2..f994c40b52 100644 --- a/src/Java/gtPlusPlus/api/objects/Logger.java +++ b/src/Java/gtPlusPlus/api/objects/Logger.java @@ -112,15 +112,15 @@ public class Logger { * Special Logger for Materials related content */ public static void MATERIALS(final String s) { - /*if (CORE.DEVENV || CORE.DEBUG) - modLogger.info("[Materials] "+s);*/ + if (CORE.DEVENV || CORE.DEBUG) + modLogger.info("[Materials] "+s); } /** * Special Logger for Debugging Materials related content */ public static void DEBUG_MATERIALS(final String s) { - /*if (CORE.DEVENV || CORE.DEBUG) - modLogger.info("[Debug][Materials] "+s);*/ + if (CORE.DEVENV || CORE.DEBUG) + modLogger.info("[Debug][Materials] "+s); } /** -- cgit