diff options
Diffstat (limited to 'src/Java/gregtech')
-rw-r--r-- | src/Java/gregtech/api/enums/TAE.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; |