Fixed Metallurgic Infuser tooltip

This commit is contained in:
Aidan C. Brady 2015-03-19 09:28:50 -04:00
parent b51fbe79fd
commit 9c6708660b

View file

@ -81,7 +81,7 @@ public class GuiMetallurgicInfuser extends GuiMekanism
if(xAxis >= 7 && xAxis <= 11 && yAxis >= 17 && yAxis <= 69)
{
drawCreativeTabHoveringText(tileEntity.infuseStored.type != null ? tileEntity.infuseStored.type.getLocalizedName() + ": " + tileEntity.infuseStored : MekanismUtils.localize("gui.empty"), xAxis, yAxis);
drawCreativeTabHoveringText(tileEntity.infuseStored.type != null ? tileEntity.infuseStored.type.getLocalizedName() + ": " + tileEntity.infuseStored.amount : MekanismUtils.localize("gui.empty"), xAxis, yAxis);
}
super.drawGuiContainerForegroundLayer(mouseX, mouseY);