From c7ea41a649e5de02d95d5bb78a52a6426a75bd6c Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 11 Jul 2017 12:51:32 +1000 Subject: + Pre .09.28 Circuits added, missing recipes though. > This will be a config option to avoid a requirement of remerging it back into Gregtech itself. > Although the new circuits will exist and have recipes, updating from a pre .09.28 world to .28+ will allow automation to continue working. > New circuits produced will have correct oredict and will continue being used in recipes. --- src/Java/gregtech/api/enums/TAE.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gregtech/api/enums') diff --git a/src/Java/gregtech/api/enums/TAE.java b/src/Java/gregtech/api/enums/TAE.java index 40811a141c..e3c59f209f 100644 --- a/src/Java/gregtech/api/enums/TAE.java +++ b/src/Java/gregtech/api/enums/TAE.java @@ -14,7 +14,7 @@ public class TAE { public static boolean hookGtTextures() { ITexture[] textureArrayDump = Textures.BlockIcons.CASING_BLOCKS; - GT_RenderedTexture[] newTextureArray = new GT_RenderedTexture[1024]; + ITexture[] newTextureArray = new ITexture[1024]; gtTexturesArrayStartOrigin = textureArrayDump.length; System.arraycopy(textureArrayDump, 0, newTextureArray, 0, textureArrayDump.length); Textures.BlockIcons.CASING_BLOCKS = newTextureArray; -- cgit