public void actionPerformed(ActionEvent e) {
//Should display all item to screen.
//Player will click item from screen and then return the number of item.
Character ally = map.getSelectedAlly();
Character tradeToAlly = map.getTradeOrHealAlly();
Trade trading = new Trade();
trading.execute(ally, tradeToAlly);
}