This commit is contained in:
jeffwadsworth 2020-07-06 14:56:00 -05:00
parent af74fb335c
commit 8aa5154e81

View file

@ -94,7 +94,12 @@ class CrypticTrilobiteManaCondition extends ManaCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
return source != null && source.getAbilityType() == AbilityType.ACTIVATED;
if (source != null) {
// ex: SimpleManaAbility is an ACTIVATED ability, but it is categorized as a MANA ability
return source.getAbilityType() == AbilityType.MANA
|| source.getAbilityType() == AbilityType.ACTIVATED;
}
return false;
}
@Override