- Adding adventure deck to the user UI in game.

This commit is contained in:
marcins78@gmail.com
2012-03-15 11:31:08 +00:00
parent 8f02509b71
commit b98ad54047

View File

@@ -199,6 +199,12 @@ public class GameState {
listener.cardCreated(physicalCard);
}
List<PhysicalCardImpl> adventureDeck = _adventureDecks.get(playerId);
if (adventureDeck != null) {
for (PhysicalCardImpl physicalCard : adventureDeck)
listener.cardCreated(physicalCard);
}
for (Assignment assignment : _assignments)
listener.addAssignment(assignment.getFellowshipCharacter(), assignment.getShadowCharacters());