Draw default background on GUI's might help fix some issues

This commit is contained in:
modmuss50 2017-06-29 13:11:59 +01:00
parent 9edbdf5016
commit ae71797d28
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -139,6 +139,7 @@ public class GuiBase extends GuiContainer {
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
this.drawDefaultBackground();
super.drawScreen(mouseX, mouseY, partialTicks);
this.renderHoveredToolTip(mouseX, mouseY);
}