actionPanel.paintComponent(g2);
// gp.profile("action panel");
g2.translate(0, 60);
BazaarCapability bcb = game.getCapability(BazaarCapability.class);
if (bcb != null && !(client.getGridPanel().getSecondPanel() instanceof BazaarPanel)) { //show bazaar supply only if panel is hidden
List<Tile> queue = bcb.getDrawQueue();
if (!queue.isEmpty()) {
int x = 0;
for (Tile tile : queue) {
Image img = client.getResourceManager().getTileImage(tile);
g2.drawImage(img, x, 0, 40, 40, null);