diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2018-09-08 17:24:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-08 17:24:41 +0200 |
commit | 2aeb6e2ca7fb090d2392490aff6d6f87be48fd19 (patch) | |
tree | 44b5519227abe05557e01dc8645b3ff4f4e7d1ed /src/main/java/gregtech/api/util/GT_Utility.java | |
parent | 65d3cf01f28a275d186d34f5771e2ec72ccd975d (diff) | |
parent | fde7ce4cf096684e3af0b88f9af0c062a2068981 (diff) | |
download | GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.tar.gz GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.tar.bz2 GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.zip |
Merge pull request #147 from GTNewHorizons/bartimaeusnek-fixes
Various fixes
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_Utility.java')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index 4a2fa78a62..824f952b85 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -77,6 +77,7 @@ import java.text.NumberFormat; import java.util.*; import java.util.Map.Entry; +import static gregtech.GT_Mod.GT_FML_LOGGER; import static gregtech.api.enums.GT_Values.*; import static gregtech.common.GT_Proxy.GTPOLLUTION; import static gregtech.common.GT_UndergroundOil.undergroundOilReadInformation; @@ -888,7 +889,7 @@ public class GT_Utility { ItemData tOreName = GT_OreDictUnificator.getAssociation(aInput); for (int i = 0; i < aOutput.length; i++) { if (aOutput[i] == null) { - System.out.println("EmptyIC2Output!" + aInput.getUnlocalizedName()); + GT_FML_LOGGER.info("EmptyIC2Output!" + aInput.getUnlocalizedName()); return false; } } |