diff options
Diffstat (limited to 'src/Java/gregtech')
-rw-r--r-- | src/Java/gregtech/api/enums/TAE.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Java/gregtech/api/enums/TAE.java b/src/Java/gregtech/api/enums/TAE.java index 04a8d16ee8..c6fc8c7790 100644 --- a/src/Java/gregtech/api/enums/TAE.java +++ b/src/Java/gregtech/api/enums/TAE.java @@ -35,14 +35,15 @@ public class TAE { return true; } - public static boolean registerTextures(GT_RenderedTexture textureToRegister) { - Textures.BlockIcons.CASING_BLOCKS[gtPPLastUsedIndex++] = textureToRegister; + /*public static boolean registerTextures(GT_RenderedTexture textureToRegister) { + Textures.BlockIcons.CASING_BLOCKS[gtPPLastUsedIndex] = textureToRegister; //Just so I know registration is done. return true; - } + }*/ public static boolean registerTextures(GT_CopiedBlockTexture gt_CopiedBlockTexture) { - Textures.BlockIcons.CASING_BLOCKS[gtPPLastUsedIndex++] = gt_CopiedBlockTexture; + Textures.BlockIcons.CASING_BLOCKS[gtPPLastUsedIndex] = gt_CopiedBlockTexture; + gtPPLastUsedIndex++; //Just so I know registration is done. return true; } |