aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/common
diff options
context:
space:
mode:
authorkekzdealer <kekzdealer@gmail.com>2020-06-18 16:59:39 +0200
committerkekzdealer <kekzdealer@gmail.com>2020-06-18 16:59:39 +0200
commit9692e77efa9d74014738753d1c6eb0f259733476 (patch)
tree6fdb5deeaba7b2fa212e2f9abb77158970377312 /src/main/java/common
parente72d42e68941e53b5f5bb864263452858ca0a2cc (diff)
downloadGT5-Unofficial-9692e77efa9d74014738753d1c6eb0f259733476.tar.gz
GT5-Unofficial-9692e77efa9d74014738753d1c6eb0f259733476.tar.bz2
GT5-Unofficial-9692e77efa9d74014738753d1c6eb0f259733476.zip
changed multi hatch to use some default texture from GT so I can test the actual functionality
Diffstat (limited to 'src/main/java/common')
-rw-r--r--src/main/java/common/tileentities/GTMTE_TFFTMultiHatch.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_TFFTMultiHatch.java b/src/main/java/common/tileentities/GTMTE_TFFTMultiHatch.java
index 024ffdc135..0ad9e5c7a9 100644
--- a/src/main/java/common/tileentities/GTMTE_TFFTMultiHatch.java
+++ b/src/main/java/common/tileentities/GTMTE_TFFTMultiHatch.java
@@ -2,6 +2,7 @@ package common.tileentities;
import client.GTTexture;
import gregtech.api.GregTech_API;
+import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
@@ -67,12 +68,14 @@ public class GTMTE_TFFTMultiHatch extends GT_MetaTileEntity_Hatch {
@Override
public ITexture[] getTexturesActive(ITexture aBaseTexture) {
- return new ITexture[]{aBaseTexture, new GT_RenderedTexture(GTTexture.getIconContainer(GTTexture.MULTI_HATCH_ON))};
+ // TODO return new ITexture[]{aBaseTexture, new GT_RenderedTexture(GTTexture.getIconContainer(GTTexture.MULTI_HATCH_ON))};
+ return new ITexture[]{aBaseTexture, new GT_RenderedTexture(Textures.BlockIcons.ARROW_UP)};
}
@Override
public ITexture[] getTexturesInactive(ITexture aBaseTexture) {
- return new ITexture[]{aBaseTexture, new GT_RenderedTexture(GTTexture.getIconContainer(GTTexture.MULTI_HATCH_OFF))};
+ // TODO return new ITexture[]{aBaseTexture, new GT_RenderedTexture(GTTexture.getIconContainer(GTTexture.MULTI_HATCH_OFF))};
+ return new ITexture[]{aBaseTexture, new GT_RenderedTexture(Textures.BlockIcons.ARROW_DOWN)};
}
@Override