From 683c8e9c36330198922511750a1f25b6ce4d5f17 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 25 Jul 2016 14:14:08 +1000 Subject: + Added EV tier battery recipes. + Added more GT5.09 Support, making my Top tier machine components not load if they're already present. % Changed some internal recipe handling. --- src/Java/miscutil/core/util/Utils.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/Java/miscutil/core/util') diff --git a/src/Java/miscutil/core/util/Utils.java b/src/Java/miscutil/core/util/Utils.java index 0e49521ccc..026e86ef48 100644 --- a/src/Java/miscutil/core/util/Utils.java +++ b/src/Java/miscutil/core/util/Utils.java @@ -371,10 +371,10 @@ public class Utils { Color c = new Color(r,g,b); String temp = Integer.toHexString( c.getRGB() & 0xFFFFFF ).toUpperCase(); - System.out.println( "hex: " + Integer.toHexString( c.getRGB() & 0xFFFFFF ) + " hex value:"+temp); + //System.out.println( "hex: " + Integer.toHexString( c.getRGB() & 0xFFFFFF ) + " hex value:"+temp); temp = Utils.appenedHexNotationToString(String.valueOf(temp)); - Utils.LOG_INFO("Made "+temp+" - Hopefully it's not a mess."); - Utils.LOG_INFO("It will decode into "+Integer.decode(temp)+"."); + Utils.LOG_WARNING("Made "+temp+" - Hopefully it's not a mess."); + Utils.LOG_WARNING("It will decode into "+Integer.decode(temp)+"."); return Integer.decode(temp); } @@ -474,10 +474,10 @@ public class Utils { temp = "0F0F0F"; } - Utils.LOG_INFO("Operating with "+temp); + Utils.LOG_WARNING("Operating with "+temp); temp = Utils.appenedHexNotationToString(String.valueOf(temp)); - Utils.LOG_INFO("Made "+temp+" - Hopefully it's not a mess."); - Utils.LOG_INFO("It will decode into "+Integer.decode(temp)+"."); + Utils.LOG_WARNING("Made "+temp+" - Hopefully it's not a mess."); + Utils.LOG_WARNING("It will decode into "+Integer.decode(temp)+"."); return Integer.decode(temp); } -- cgit