From 8f5d3cb93690fa15cae0999eb17994213d920288 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 11 Jul 2017 10:09:00 +1000 Subject: $ Fixed Industrial Sieve Tooltip. $ Implemented Texture Array Expansion. > This fixes the issue of hatches not using the correct textures. --- src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java index 3dd3c88dc4..1f8bb5e86e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java @@ -1,6 +1,8 @@ package gtPlusPlus.xmod.gregtech.loaders; +import gregtech.api.enums.TAE; import gtPlusPlus.core.block.ModBlocks; +import gtPlusPlus.core.util.Utils; import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks; import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks2; @@ -8,6 +10,10 @@ public class Gregtech_Blocks { public static void run(){ + Utils.LOG_INFO("Expanding Gregtech Texture Array from 128 -> 1024."); + boolean didExpand = TAE.hookGtTextures(); + Utils.LOG_INFO("Did Texture Array expand correctly? "+didExpand); + //Casing Blocks ModBlocks.blockCasingsMisc = new GregtechMetaCasingBlocks(); ModBlocks.blockCasings2Misc = new GregtechMetaCasingBlocks2(); -- cgit