Update GT_MetaTileEntity_Hatch_DataAccess.java

This commit is contained in:
Antifluxfield 2017-06-30 06:28:46 +08:00 committed by GitHub
parent ca9377db1e
commit 04058ef4e4

View file

@ -16,11 +16,11 @@ public class GT_MetaTileEntity_Hatch_DataAccess extends GT_MetaTileEntity_Hatch
}
public GT_MetaTileEntity_Hatch_DataAccess(String aName, int aTier, String aDescription, ITexture[][][] aTextures) {
super(aName, aTier, aTier < 1 ? 1 : aTier == 1 ? 4 : aTier == 2 ? 9 : 16, aDescription, aTextures);
super(aName, aTier, aTier == 4 ? 4 : 16, aDescription, aTextures);
}
public GT_MetaTileEntity_Hatch_DataAccess(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {
super(aName, aTier, aTier < 1 ? 1 : aTier == 1 ? 4 : aTier == 2 ? 9 : 16, aDescription, aTextures);
super(aName, aTier, aTier == 4 ? 4 : 16, aDescription, aTextures);
}
@Override