private void playTopStockCard(Game game) {
ActionPlayYourCards act = new ActionPlayACard();
Collection<Card> cards = new ArrayList<Card>();
cards.add(getZones().get("stock").getSortedList().get(0));
try {
act.playerActed(new ActionEvent(game, this,
getZones().get("stock"), getZones().get("current"), cards));
} catch (ActionException e) {
e.printStackTrace();
}
game.registerAction(act);