aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-08-09 18:13:54 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-08-09 18:13:54 +1000
commitf329a56cfc49be13de84523bee9990ee14597b62 (patch)
tree5c6b24987035a880749e4d62692d42cc7ab563cf /src/Java/gtPlusPlus/core/util
parentd99058863bb4c717f6c63926d555811df48558af (diff)
downloadGT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.tar.gz
GT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.tar.bz2
GT5-Unofficial-f329a56cfc49be13de84523bee9990ee14597b62.zip
% Rewrote the Preloader mod to now be a dummy mod.
+ Added ASM usage to Preloader. + MC Version annotations to both GT++ and it's child mod GT++ Dark world.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r--src/Java/gtPlusPlus/core/util/Utils.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/Utils.java b/src/Java/gtPlusPlus/core/util/Utils.java
index b31c248e22..471fcadb62 100644
--- a/src/Java/gtPlusPlus/core/util/Utils.java
+++ b/src/Java/gtPlusPlus/core/util/Utils.java
@@ -11,6 +11,7 @@ import org.apache.logging.log4j.Logger;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.FMLLog;
+import cpw.mods.fml.relauncher.FMLRelaunchLog;
import gregtech.api.enums.Materials;
import gregtech.api.enums.TC_Aspects;
import gregtech.api.enums.TC_Aspects.TC_AspectStack;
@@ -203,6 +204,11 @@ public class Utils {
//}
}
+ //Non-Dev Comments
+ public static void LOG_ASM(final String s){
+ FMLRelaunchLog.info("", s);
+ }
+
public static void paintBox(final Graphics g, final int MinA, final int MinB, final int MaxA, final int MaxB){
g.drawRect (MinA, MinB, MaxA, MaxB);
}
@@ -547,7 +553,7 @@ public class Utils {
return output;
}
-
+
public static String sanitizeStringKeepBrackets(final String input){
String temp;
String output;