- Commander 2014: Added Teferi, Temporal Archmage

This commit is contained in:
swordshine
2014-07-27 11:56:42 +00:00
parent a3acbce645
commit 6cac3199de
3 changed files with 7 additions and 4 deletions

View File

@@ -131,9 +131,8 @@ public enum DeckFormat {
if (null == cmd || cmd.isEmpty()) {
return "is missing a commander";
}
if (!cmd.get(0).getRules().getType().isLegendary()
|| !cmd.get(0).getRules().getType().isCreature()) {
// TODO: Teferi, Temporal Archmage
if (!cmd.get(0).getRules().getOracleText().contains("can be your commander")
&& (!cmd.get(0).getRules().getType().isLegendary() || !cmd.get(0).getRules().getType().isCreature())) {
return "has a commander that is not a legendary creature";
}