Changed statement order the get the messages of the game log in a more natural order.

This commit is contained in:
LevelX2 2013-03-15 15:59:27 +01:00
parent 65a7049d02
commit f005c75d7c

View file

@ -693,8 +693,8 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
player.getLibrary().addAll(player.getHand().getCards(this), this);
player.getHand().clear();
player.shuffleLibrary(this);
player.drawCards(numCards - 1, this);
fireInformEvent(player.getName() + " mulligans down to " + Integer.toString(numCards - 1) + " cards");
player.drawCards(numCards - 1, this);
}
@Override