Railcraft

Railcraft

34M Downloads

[1.12.2] GUI item tooltip issue

bookerthegeek opened this issue ยท 3 comments

commented

Heyo

When you are in the Rolling Machine Interface, items do not show there name when you hover over them.
Image
Image

commented

this is the case for all railcraft guis

commented

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

}

commented

Fixed in one of the recent commits.