Added Slot Ghost Images.

Fixed Issue with Condenser button not supporting right clicking.
Condenser gui now shows costs in tooltip.
This commit is contained in:
AlgorithmX2
2014-01-30 21:08:44 -06:00
parent 8aa96bd426
commit 82a862705b
6 changed files with 199 additions and 197 deletions
@@ -58,23 +58,6 @@ public class GuiUpgradeable extends AEBaseGui
buttonList.add( fuzzyMode );
}
protected void mouseClicked(int xCoord, int yCoord, int btn)
{
if ( btn == 1 )
{
for (Object o : this.buttonList)
{
GuiButton guibutton = (GuiButton) o;
if ( guibutton.mousePressed( this.mc, xCoord, yCoord ) )
{
super.mouseClicked( xCoord, yCoord, 0 );
return;
}
}
}
super.mouseClicked( xCoord, yCoord, btn );
}
@Override
protected void actionPerformed(GuiButton btn)
{