From e3890b4b115f3e154a26b0d3ed0f1b29a17fd47d Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Sat, 15 Feb 2014 22:44:35 -0600 Subject: [PATCH] Item Counts now appear in tooltips for ME Slots. --- client/gui/AEBaseMEGui.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/gui/AEBaseMEGui.java b/client/gui/AEBaseMEGui.java index 4088f4ec1..64837d8bc 100644 --- a/client/gui/AEBaseMEGui.java +++ b/client/gui/AEBaseMEGui.java @@ -57,7 +57,9 @@ public abstract class AEBaseMEGui extends AEBaseGui } // Vanillia version... - protected void drawItemStackTooltip(ItemStack stack, int x, int y) + // protected void drawItemStackTooltip(ItemStack stack, int x, int y) + @Override + protected void renderToolTip(ItemStack stack, int x, int y) { Slot s = getSlot( x, y ); if ( s instanceof SlotME && stack != null ) @@ -95,6 +97,7 @@ public abstract class AEBaseMEGui extends AEBaseGui return; } } + super.renderToolTip( stack, x, y ); // super.drawItemStackTooltip( stack, x, y ); }