IKO - Mythos cycle tweaks

This commit is contained in:
Tim Mocny
2020-04-13 04:42:16 +00:00
committed by Hans Mackowiak
parent 84519d10ea
commit 4be26f575c
4 changed files with 5 additions and 5 deletions

View File

@@ -448,7 +448,7 @@ public class SpellAbilityCondition extends SpellAbilityVariables {
for (String s : getManaNotSpent().split(" ")) {
toPay |= MagicColor.fromName(s);
}
if (0 != (toPay & sa.getHostCard().getColorsPaid())) {
if (toPay == (toPay & sa.getHostCard().getColorsPaid())) {
return false;
}
}