Add craftable items QOL features (tooltips / hold ALT to toggle craft request) (#241)

This commit is contained in:
Domi
2023-03-20 20:01:06 +01:00
committed by GitHub
parent af5921f9e8
commit eefb11544e
7 changed files with 22 additions and 4 deletions
@@ -76,6 +76,11 @@ public abstract class AEBaseMEGui extends AEBaseGui {
currentToolTip.add(format);
}
if (myStack.isCraftable() && AEConfig.instance().isShowCraftableTooltip()) {
final String local = ButtonToolTips.ItemCraftable.getLocal();
currentToolTip.add(TextFormatting.GRAY + local);
}
this.drawHoveringText(currentToolTip, x, y, this.fontRenderer);
return;