Skip to content

Commit

Permalink
Fix ToolStation rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Aug 20, 2014
1 parent 2e2c900 commit 85c866a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/tools/gui/ToolStationGui.java
Expand Up @@ -454,7 +454,7 @@ protected void drawGuiContainerBackgroundLayer (float par1, int par2, int par3)

for (int i = 0; i < slotX.length; i++)
{
this.drawTexturedModalRect(cornerX + slotX[i] - 4, this.guiTop + slotY[i] - 4, 140, 212, 28, 28);
this.drawTexturedModalRect(cornerX + slotX[i], this.guiTop + slotY[i], 144, 216, 18, 18);
if (!logic.isStackInSlot(i + 1))
{
this.drawTexturedModalRect(cornerX + slotX[i], this.guiTop + slotY[i], 18 * iconX[i], 18 * iconY[i], 18, 18);
Expand Down

0 comments on commit 85c866a

Please sign in to comment.