fix (paragonOfModernity): use pre-converted mana (#8896)

This commit is contained in:
Hidde vb 2022-04-30 02:09:18 +02:00 committed by GitHub
parent 325df85376
commit 2adc1943e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,6 +60,6 @@ enum ParagonOfModernityCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
return source.getManaCosts().getUsedManaToPay().getDifferentColors() == 3;
return source.getManaCostsToPay().getUsedManaToPay().getDifferentColors() == 3;
}
}