From bcfabba1cf48fff83ab49c08399699669717412c Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 19 Jul 2016 19:29:29 +1000 Subject: > 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. --- src/Java/miscutil/core/lib/LoadedMods.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/Java/miscutil/core/lib') 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."); } -- cgit