Skip to content

Commit 3f1886e

Browse files
KaupenjoeKaupenjoe
authored andcommitted
fixed tooltips not showing in screen
1 parent e375fe0 commit 3f1886e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/net/kaupenjoe/tutorialmod/screen/custom/PedestalScreen.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,10 @@ protected void renderBg(GuiGraphics guiGraphics, float pPartialTick, int pMouseX
2828

2929
guiGraphics.blit(GUI_TEXTURE, x, y, 0, 0, imageWidth, imageHeight);
3030
}
31+
32+
@Override
33+
public void render(GuiGraphics pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick) {
34+
super.render(pGuiGraphics, pMouseX, pMouseY, pPartialTick);
35+
this.renderTooltip(pGuiGraphics, pMouseX, pMouseY);
36+
}
3137
}

0 commit comments

Comments
 (0)