aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/lib
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-19 19:29:29 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-19 19:29:29 +1000
commitbcfabba1cf48fff83ab49c08399699669717412c (patch)
tree7d2947f86c0f71cef92de7ffe093348e8035fc76 /src/Java/miscutil/core/lib
parent55ee2b01e25c7f7f6c4c893e18572150266ebd03 (diff)
downloadGT5-Unofficial-bcfabba1cf48fff83ab49c08399699669717412c.tar.gz
GT5-Unofficial-bcfabba1cf48fff83ab49c08399699669717412c.tar.bz2
GT5-Unofficial-bcfabba1cf48fff83ab49c08399699669717412c.zip
> Attempted to implement a new GT-esque tool, the Skookum Choocher.
> Texture issues everywhere, but it's related to another issue from long ago. > Think fixing one will fix the other.
Diffstat (limited to 'src/Java/miscutil/core/lib')
-rw-r--r--src/Java/miscutil/core/lib/LoadedMods.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Java/miscutil/core/lib/LoadedMods.java b/src/Java/miscutil/core/lib/LoadedMods.java
index b1b95a6af3..40862648a8 100644
--- a/src/Java/miscutil/core/lib/LoadedMods.java
+++ b/src/Java/miscutil/core/lib/LoadedMods.java
@@ -1,6 +1,7 @@
package miscutil.core.lib;
import miscutil.core.util.Utils;
+import miscutil.core.xmod.gregtech.api.enums.GregtechTextures;
import miscutil.core.xmod.gregtech.recipes.GregtechRecipeAdder;
import cpw.mods.fml.common.Loader;
@@ -39,7 +40,10 @@ public class LoadedMods {
if (Gregtech){
try {
CORE.sRecipeAdder = CORE.RA = new GregtechRecipeAdder();
- Utils.LOG_INFO("Created a Gregtech recipe handler.");
+ Utils.LOG_INFO("Created Gregtech recipe handler.");
+ GregtechTextures.BlockIcons.VOID.name();
+ GregtechTextures.ItemIcons.VOID.name();
+ Utils.LOG_INFO("Created Gregtech texture handler.");
} catch (NullPointerException e){
Utils.LOG_INFO("Could NOT create a Gregtech recipe handler.");
}