[1.12.2] GUI item tooltip issue
bookerthegeek opened this issue ยท 3 comments
I remember fixing something like this.
You need to add the following to the gui classes:
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
this.drawDefaultBackground();
super.drawScreen(mouseX, mouseY, partialTicks);
this.renderHoveredToolTip(mouseX, mouseY);
}