mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Fixed colorless commanders not being able to use a single type of basic land (fixes #4973)
This commit is contained in:
parent
ea77ec0532
commit
c7ba717453
2 changed files with 5 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue