diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-12 19:15:04 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-12 19:15:04 +0000 |
commit | 8e813e13888a71e1fbdb38ad8f71f96b556d83b5 (patch) | |
tree | 31fdca5a1db91885a521abd3a7f669c52f552634 /src/Java/gtPlusPlus/core/lib | |
parent | ca5cfe8c7832ae0bcc6a498b3d89cb007ff7a74e (diff) | |
download | GT5-Unofficial-8e813e13888a71e1fbdb38ad8f71f96b556d83b5.tar.gz GT5-Unofficial-8e813e13888a71e1fbdb38ad8f71f96b556d83b5.tar.bz2 GT5-Unofficial-8e813e13888a71e1fbdb38ad8f71f96b556d83b5.zip |
% Moved Several recipes to the Chemical Plant. Fixes #547.
% Adjusted Some Bio recipes, based on feedback from Discord. (Butanol now has 4.5x better fuel value)
% Added a hard crash into the Chemical Plant recipe handler, to prevent it being handled incorrectly.
$ Fixed Toluene Cell generating under wrong circumstances.
Diffstat (limited to 'src/Java/gtPlusPlus/core/lib')
-rw-r--r-- | src/Java/gtPlusPlus/core/lib/CORE.java | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/Java/gtPlusPlus/core/lib/CORE.java b/src/Java/gtPlusPlus/core/lib/CORE.java index 3330ad8c3f..2a267dc16d 100644 --- a/src/Java/gtPlusPlus/core/lib/CORE.java +++ b/src/Java/gtPlusPlus/core/lib/CORE.java @@ -290,19 +290,19 @@ public class CORE { } public static final void crash() { - Logger.ERROR("=========================================================="); - Logger.ERROR("[GT++ CRASH]"); - Logger.ERROR("=========================================================="); - Logger.ERROR("Oooops..."); - Logger.ERROR("This should only happy in a development environment or when something really bad happens."); - Logger.ERROR("=========================================================="); - Logger.ERROR("Called from: "+ReflectionUtils.getMethodName(0)); - Logger.ERROR(ReflectionUtils.getMethodName(1)); - Logger.ERROR(ReflectionUtils.getMethodName(2)); - Logger.ERROR(ReflectionUtils.getMethodName(3)); - Logger.ERROR(ReflectionUtils.getMethodName(4)); - Logger.ERROR(ReflectionUtils.getMethodName(5)); - Logger.ERROR(ReflectionUtils.getMethodName(6)); + Logger.INFO("=========================================================="); + Logger.INFO("[GT++ CRASH]"); + Logger.INFO("=========================================================="); + Logger.INFO("Oooops..."); + Logger.INFO("This should only happy in a development environment or when something really bad happens."); + Logger.INFO("=========================================================="); + Logger.INFO("Called from: "+ReflectionUtils.getMethodName(0)); + Logger.INFO(ReflectionUtils.getMethodName(1)); + Logger.INFO(ReflectionUtils.getMethodName(2)); + Logger.INFO(ReflectionUtils.getMethodName(3)); + Logger.INFO(ReflectionUtils.getMethodName(4)); + Logger.INFO(ReflectionUtils.getMethodName(5)); + Logger.INFO(ReflectionUtils.getMethodName(6)); FMLCommonHandler.instance().exitJava(0, true); } |