diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-03-19 17:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 17:12:47 +0100 |
commit | 4bdccb94802098bf9248e419c51861640fc0f1c1 (patch) | |
tree | d03af88ec036dcb897c5a845369b345aeed3c97f /src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java | |
parent | feca5739287583eee824512ff61714ae4113a6fc (diff) | |
parent | 5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff) | |
download | GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.gz GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.bz2 GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.zip |
Merge pull request #251 from GTNewHorizons/Refactor
Refactor
Diffstat (limited to 'src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java')
-rw-r--r-- | src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java b/src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java index 9cdb74c2f1..532ce85146 100644 --- a/src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java +++ b/src/main/java/gregtech/api/gui/GT_GUIContainerMetaTile_Machine.java @@ -28,11 +28,14 @@ public class GT_GUIContainerMetaTile_Machine extends GT_GUIContainer { protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) { super.drawGuiContainerBackgroundLayer(par1, par2, par3); if (GregTech_API.sColoredGUI && mContainer != null && mContainer.mTileEntity != null) { - byte colorByte=mContainer.mTileEntity.getColorization(); + byte colorByte = mContainer.mTileEntity.getColorization(); Dyes color; - if(colorByte != -1) color= Dyes.get(colorByte); - else color=Dyes.MACHINE_METAL; - GL11.glColor3ub((byte)color.mRGBa[0], (byte)color.mRGBa[1], (byte)color.mRGBa[2]); - } else GL11.glColor3ub((byte)255,(byte)255,(byte)255); + if (colorByte != -1) + color = Dyes.get(colorByte); + else + color = Dyes.MACHINE_METAL; + GL11.glColor3ub((byte) color.mRGBa[0], (byte) color.mRGBa[1], (byte) color.mRGBa[2]); + } else + GL11.glColor3ub((byte) 255, (byte) 255, (byte) 255); } }
\ No newline at end of file |