- Fixed the "remove this card if not playing for ante" inversion causing the ante cards to be removed when playing for ante and not removed when not playing for ante.

This commit is contained in:
Agetian
2014-01-21 11:04:08 +00:00
parent 567ffe84cd
commit 3da6e688e4

View File

@@ -294,7 +294,7 @@ public class Match {
Deck myDeck = psc.getDeck();
Set<PaperCard> myRemovedAnteCards = null;
if (useAnte) {
if (!useAnte) {
myRemovedAnteCards = getRemovedAnteCards(myDeck);
for (PaperCard cp: myRemovedAnteCards) {
for (Entry<DeckSection, CardPool> ds : myDeck) {