Fix Mana#containsAny to account for Any mana

This commit is contained in:
Chase 2018-03-20 01:38:21 -07:00
parent 8ff4f81cea
commit 491a05b2df

View file

@ -934,6 +934,8 @@ public class Mana implements Comparable<Mana>, Serializable, Copyable<Mana> {
return true;
} else if (mana.colorless > 0 && this.colorless > 0 && includeColorless) {
return true;
} else if (mana.any > 0 && this.count() > 0){
return true;
}
return false;