Fixed how the collections are constructed after changes.

This commit is contained in:
marcins78
2013-04-05 17:15:57 +00:00
parent 58b6e4b422
commit 0e182faa25

View File

@@ -15,6 +15,7 @@ public class DefaultCardCollection implements MutableCardCollection {
public DefaultCardCollection(CardCollection cardCollection) {
_counts.putAll(cardCollection.getAll());
_basicItems.addAll(cardCollection.getAllCardsInCollection());
_currency = cardCollection.getCurrency();
}