mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed snow mana issue #590
This commit is contained in:
parent
8121849a18
commit
16606d9983
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue