aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gregtech/api
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-07-11 12:51:32 +1000
committerAlkalus <draknyte1@hotmail.com>2017-07-11 12:51:32 +1000
commitc7ea41a649e5de02d95d5bb78a52a6426a75bd6c (patch)
tree55eaffc4d8aa920d7debcba95a394b566f1e3d26 /src/Java/gregtech/api
parentdf6ae148fc4572662d76b0cd4a65bbf0acdda983 (diff)
downloadGT5-Unofficial-c7ea41a649e5de02d95d5bb78a52a6426a75bd6c.tar.gz
GT5-Unofficial-c7ea41a649e5de02d95d5bb78a52a6426a75bd6c.tar.bz2
GT5-Unofficial-c7ea41a649e5de02d95d5bb78a52a6426a75bd6c.zip
+ 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.
Diffstat (limited to 'src/Java/gregtech/api')
-rw-r--r--src/Java/gregtech/api/enums/TAE.java2
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;