Fix some issues *derp*

This commit is contained in:
Sollace 2019-02-20 19:02:02 +02:00
parent 1614a1b8b0
commit 91e8c012ed
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ public class Button extends GuiButton implements IGuiTooltipped<Button> {
if (super.mousePressed(mc, mouseX, mouseY)) {
action.perform(this);
return false;
return true;
}
return false;

View file

@ -28,6 +28,6 @@ public class GuiScreenSettings extends GameGui {
drawDefaultBackground();
drawCenteredString(fontRenderer, title, width / 2, 15, 16777215);
super.drawScreen(mouseX, mouseY, partialTicks);
super.drawContents(mouseX, mouseY, partialTicks);
}
}