- Fixed theme decks being affected by Singleton mode.

This commit is contained in:
Sloth
2012-09-07 09:18:39 +00:00
parent ef37ae475b
commit a5bc4a8534
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ import forge.util.closures.Predicate;
public abstract class GenerateColoredDeckBase {
protected final Random r = MyRandom.getRandom();
protected final Map<String, Integer> cardCounts = new HashMap<String, Integer>();
protected final int maxDuplicates;
protected int maxDuplicates;
protected CardColor colors;
protected final ItemPool<CardPrinted> tDeck;

View File

@@ -47,7 +47,7 @@ public class GenerateThemeDeck extends GenerateColoredDeckBase {
* </p>
*/
public GenerateThemeDeck() {
this.maxDuplicates = 4;
}
/**