From 8492772516898efed17f7384c63ef7d049fbd24a Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 4 Jul 2017 19:35:43 +1000 Subject: + Started adding recipes for the chemicals added earlier. + Added a framework for a Catalytic Reactor. $ Fixed FFPP recipes. $ Finally fixed #56. Textures from GT++ now have their own array to prevent GT Texture overlap issues. --- .../xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java index 1cda562af9..9ccae92bae 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java @@ -2,6 +2,7 @@ package gtPlusPlus.xmod.gregtech.common.blocks.textures; import gregtech.api.GregTech_API; import gregtech.api.interfaces.IIconContainer; +import gregtech.api.interfaces.ITexture; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.util.Utils; import net.minecraft.client.renderer.texture.TextureMap; @@ -10,6 +11,9 @@ import net.minecraft.util.ResourceLocation; public class TexturesGtBlock { + + public static ITexture[] CASING_BLOCKS_GTPP = new ITexture[256]; + /* * Handles Custom Textures. */ -- cgit