Fixed colorless commanders not being able to use a single type of basic land (fixes #4973)

This commit is contained in:
Evan Kranzler 2018-05-27 13:06:26 -04:00
parent ea77ec0532
commit c7ba717453
2 changed files with 5 additions and 3 deletions

View file

@ -104,7 +104,7 @@ public class FilterMana implements Serializable {
}
public boolean isColorless() {
return colorless;
return !(white || blue || black || red || green) || colorless;
}
public void setColorless(boolean colorless) {