Set all cards at game start to face up (can be set to face down from previous game of the match e.g. by Pyxis of Pandemonium).

This commit is contained in:
LevelX2 2014-08-09 19:44:14 +02:00
parent 10a664cc6f
commit 6068357c3f

View file

@ -240,6 +240,7 @@ public abstract class GameImpl implements Game, Serializable {
card = ((PermanentCard)card).getCard();
}
card.setOwnerId(ownerId);
card.setFaceDown(false); // can be set face dwon from previous game
gameCards.put(card.getId(), card);
state.addCard(card);
if (card.isSplitCard()) {