Fixing sending attached cards.

This commit is contained in:
marcins78@gmail.com
2012-07-30 18:31:04 +00:00
parent f9c1ce50d7
commit 7f0704796c

View File

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