Skip to content

Commit

Permalink
Fix liquid clicking for smelteries with 4-column GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Dec 4, 2014
1 parent ee9e2a3 commit 1941ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/smeltery/gui/SmelteryGui.java
Expand Up @@ -518,7 +518,7 @@ public void mouseClicked (int mouseX, int mouseY, int mouseButton)
{
super.mouseClicked(mouseX, mouseY, mouseButton);

int cornerX = (width - xSize) / 2 + 36;
int cornerX = (width - xSize) / 2 + 36 + (columns - 3) * 22;
int cornerY = (height - ySize) / 2;
int fluidToBeBroughtUp = -1;

Expand Down

0 comments on commit 1941ddb

Please sign in to comment.