mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-30 16:28:00 +01:00
Fix some issues *derp*
This commit is contained in:
parent
1614a1b8b0
commit
91e8c012ed
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ public class Button extends GuiButton implements IGuiTooltipped<Button> {
|
||||||
if (super.mousePressed(mc, mouseX, mouseY)) {
|
if (super.mousePressed(mc, mouseX, mouseY)) {
|
||||||
action.perform(this);
|
action.perform(this);
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -28,6 +28,6 @@ public class GuiScreenSettings extends GameGui {
|
||||||
drawDefaultBackground();
|
drawDefaultBackground();
|
||||||
drawCenteredString(fontRenderer, title, width / 2, 15, 16777215);
|
drawCenteredString(fontRenderer, title, width / 2, 15, 16777215);
|
||||||
|
|
||||||
super.drawScreen(mouseX, mouseY, partialTicks);
|
super.drawContents(mouseX, mouseY, partialTicks);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue