diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-10-06 02:50:30 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-10-06 02:50:30 +1000 |
commit | ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2 (patch) | |
tree | 596cbe670f424207ecdecf9b10da0d8872a7f062 /src/Java/gtPlusPlus/xmod/gregtech/api | |
parent | 444cddd65e9966ff62ac6064434cec4f867a67ad (diff) | |
download | GT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.tar.gz GT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.tar.bz2 GT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.zip |
$ .08 compliance fixes.
% LFTR Changes. It now outputs U233 on average every 10 seconds.
% Updated LFTR tool-tip.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GregtechMetaPipeEntity_Cable.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GregtechMetaPipeEntity_Cable.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GregtechMetaPipeEntity_Cable.java index e57be69c1a..90cecb6f0e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GregtechMetaPipeEntity_Cable.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GregtechMetaPipeEntity_Cable.java @@ -104,15 +104,15 @@ public class GregtechMetaPipeEntity_Cable extends GT_MetaPipeEntity_Cable implem if (tThickNess < 0.749F) return new ITexture[] { new GT_RenderedTexture(wireMaterial.mIconSet.mTextures[69], this.vRGB), - new GT_RenderedTexture(Textures.BlockIcons.INSULATION_MEDIUM_PLUS, + new GT_RenderedTexture(Textures.BlockIcons.INSULATION_LARGE, Dyes.getModulation(aColorIndex, Dyes.CABLE_INSULATION.mRGBa)) }; if (tThickNess < 0.874F) return new ITexture[] { new GT_RenderedTexture(wireMaterial.mIconSet.mTextures[69], this.vRGB), - new GT_RenderedTexture(Textures.BlockIcons.INSULATION_LARGE, + new GT_RenderedTexture(Textures.BlockIcons.INSULATION_HUGE, Dyes.getModulation(aColorIndex, Dyes.CABLE_INSULATION.mRGBa)) }; return new ITexture[] { new GT_RenderedTexture(wireMaterial.mIconSet.mTextures[69], this.vRGB), - new GT_RenderedTexture(Textures.BlockIcons.INSULATION_HUGE, + new GT_RenderedTexture(Textures.BlockIcons.INSULATION_FULL, Dyes.getModulation(aColorIndex, Dyes.CABLE_INSULATION.mRGBa)) }; } return new ITexture[] { new GT_RenderedTexture(Textures.BlockIcons.INSULATION_FULL, |