Item Counts now appear in tooltips for ME Slots.

This commit is contained in:
AlgorithmX2
2014-02-15 22:44:35 -06:00
parent 1de6520fae
commit e3890b4b11
+4 -1
View File
@@ -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 );
}