[FIC] fix Krile Baldesion trigger not working

This commit is contained in:
theelk801 2025-06-24 16:16:46 -04:00
parent fda43021a4
commit a2612434f7

View file

@ -75,6 +75,7 @@ enum KrileBaldesionPredicate implements ObjectSourcePlayerPredicate<Card> {
return CardUtil
.getEffectValueFromAbility(input.getSource(), "spellCast", Spell.class)
.map(Spell::getManaValue)
.equals(input.getObject().getManaValue());
.filter(x -> x == input.getObject().getManaValue())
.isPresent();
}
}