summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java')
-rwxr-xr-xsrc/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java b/src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java
index bccf2b1..1498f75 100755
--- a/src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java
+++ b/src/main/java/darkknight/jewelrycraft/client/gui/GuiJewelry.java
@@ -35,12 +35,14 @@ public class GuiJewelry extends GuiContainer {
public void drawGuiContainerBackgroundLayer(float f, int mouseX,
int mouseY) {
GL11.glColor3f(1, 1, 1);
- Minecraft.getMinecraft().getTextureManager().bindTexture(texture);
+ Minecraft.getMinecraft().getTextureManager()
+ .bindTexture(texture);
drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize);
GL11.glPushMatrix();
GuiInventory.func_147046_a(guiLeft - 24, guiTop + 124, 60,
(float) (guiLeft - 24) - mouseX,
- (float) (guiTop + 124 - 90) - mouseY, this.mc.thePlayer);
+ (float) (guiTop + 124 - 90) - mouseY,
+ this.mc.thePlayer);
GL11.glPopMatrix();
}
@@ -49,7 +51,8 @@ public class GuiJewelry extends GuiContainer {
* @param mouseY
*/
@Override
- public void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
+ public void drawGuiContainerForegroundLayer(int mouseX,
+ int mouseY) {
// Do nothing
}
@@ -70,7 +73,8 @@ public class GuiJewelry extends GuiContainer {
int cornerX = guiLeft;
int cornerY = guiTop;
this.buttonList.clear();
- TabRegistry.updateTabValues(cornerX, cornerY, TabJewelry.class);
+ TabRegistry.updateTabValues(cornerX, cornerY,
+ TabJewelry.class);
TabRegistry.addTabsToList(this.buttonList);
}
}