Fixed snow mana issue #590

This commit is contained in:
Plopman 2014-10-06 10:58:16 +02:00
parent 8121849a18
commit 16606d9983

View file

@ -65,7 +65,10 @@ public class SnowManaCost extends ManaCostImpl {
@Override @Override
public boolean isPaid() { public boolean isPaid() {
return paid | payment.getColorless() == 1; if (paid) {
return true;
}
return this.isColorlessPaid(1);
} }
@Override @Override