Fixing sending attached cards.

This commit is contained in:
marcins78@gmail.com
2012-07-30 18:30:28 +00:00
parent b992b7329a
commit f9c1ce50d7

View File

@@ -180,7 +180,7 @@ public class GameState {
// First non-attached cards
for (PhysicalCardImpl physicalCard : _inPlay) {
if (physicalCard.getZone() != Zone.ATTACHED) {
if (physicalCard.getAttachedTo() != null) {
listener.cardCreated(physicalCard);
sentCardsFromPlay.add(physicalCard);
} else