From 155978aefd40a0f6a0db822abffc3cef2a0c433a Mon Sep 17 00:00:00 2001 From: "Aidan C. Brady" Date: Tue, 8 Oct 2013 17:47:45 -0400 Subject: [PATCH] Forgot to commit change! --- common/mekanism/client/gui/GuiFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/mekanism/client/gui/GuiFactory.java b/common/mekanism/client/gui/GuiFactory.java index e26ee7faa..1e72005e4 100644 --- a/common/mekanism/client/gui/GuiFactory.java +++ b/common/mekanism/client/gui/GuiFactory.java @@ -63,7 +63,7 @@ public class GuiFactory extends GuiMekanism int displayInt; displayInt = tileEntity.getScaledEnergyLevel(52); - drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176 + 26, 52 - displayInt, 4, displayInt); + drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt); if(tileEntity.tier == FactoryTier.BASIC) { @@ -72,7 +72,7 @@ public class GuiFactory extends GuiMekanism int xPos = 59 + (i*38); displayInt = tileEntity.getScaledProgress(20, i); - drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt); + drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176, 52, 8, displayInt); } } else if(tileEntity.tier == FactoryTier.ADVANCED) @@ -82,7 +82,7 @@ public class GuiFactory extends GuiMekanism int xPos = 39 + (i*26); displayInt = tileEntity.getScaledProgress(20, i); - drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt); + drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176, 52, 8, displayInt); } } else if(tileEntity.tier == FactoryTier.ELITE) @@ -92,7 +92,7 @@ public class GuiFactory extends GuiMekanism int xPos = 33 + (i*19); displayInt = tileEntity.getScaledProgress(20, i); - drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt); + drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176, 52, 8, displayInt); } } }