[WHO] fix Ryan Sinclair not allowing spells with equal mana value to be cast

This commit is contained in:
theelk801 2025-07-06 15:56:18 -04:00
parent 2c4eb38426
commit 4c9d50c682

View file

@ -77,7 +77,7 @@ class RyanSinclairEffect extends OneShotEffect {
if (card != null) {
FilterCard filter = new FilterCard();
filter.add(new ManaValuePredicate(
ComparisonType.FEWER_THAN,
ComparisonType.OR_LESS,
Optional.ofNullable(source.getSourcePermanentOrLKI(game))
.map(MageObject::getPower)
.map(MageInt::getValue)