Added check for "SVar:RemAIDeck:True" in cards.txt to replace removed card list.

This commit is contained in:
jendave
2011-08-06 05:39:44 +00:00
parent accb3293bb
commit f749d3934b

View File

@@ -786,7 +786,7 @@ public class GenerateConstructedMultiColorDeck
return CardUtil.getColors(c).size() <= 3 && return CardUtil.getColors(c).size() <= 3 &&
!c.isLand() && //no land !c.isLand() && //no land
!remove.contains(c.getName()) || //OR very important !(remove.contains(c.getName()) || c.getSVar("RemAIDeck").equals("True")) || //OR very important
goodLand.contains(c.getName()); goodLand.contains(c.getName());
} }
}); });