Fixed a spelling error in commander format check.

This commit is contained in:
LevelX2 2013-12-27 16:40:42 +01:00
parent b3033d4b8f
commit 148cc557f4

View file

@ -138,7 +138,7 @@ public class Commander extends DeckValidator {
FilterMana color = getColorIdentity(commander);
for(Card card : deck.getCards()){
if(!cardHasValideColor(color, card)){
invalid.put(card.getName(), "Invalide color");
invalid.put(card.getName(), "Invalid color");
valid = false;
}
}