Fixed generate deck.

This commit is contained in:
jendave
2011-08-06 08:12:48 +00:00
parent 44a4fd5a9d
commit ec1e7151f7

View File

@@ -135,7 +135,7 @@ public class GenerateConstructedDeck
} }
return CardUtil.getColors(c).size() <= 2 && //only dual colored gold cards return CardUtil.getColors(c).size() <= 2 && //only dual colored gold cards
!c.isLand() && //no land !c.isLand() && //no land
c.getSVar("RemAIDeck").equals("True") || //OR very important !c.getSVar("RemAIDeck").equals("True") || //OR very important
goodLand.contains(c.getName()); goodLand.contains(c.getName());
} }
}); });