mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +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
|
||||
public boolean isPaid() {
|
||||
return paid | payment.getColorless() == 1;
|
||||
if (paid) {
|
||||
return true;
|
||||
}
|
||||
return this.isColorlessPaid(1);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue