1
0
Fork 0
mirror of https://github.com/Sollace/Unicopia.git synced 2025-04-02 09:15:28 +02:00

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
src/main/java/com/minelittlepony

View file

@ -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;

View file

@ -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);
} }
} }